Re: [Numpy-discussion] "moving window" in numpy

2007-11-26 Thread Stefan van der Walt
Hi Matthew On Sun, Nov 25, 2007 at 05:00:48PM -0800, Matthew Perry wrote: > I'm not sure if my terminology is familiar but I'm trying to do a > "moving window" analysis (ie a spatial filter or kernel) on a 2-D > array representing elevation. For example, a 3x3 window centered on > each cell is us

Re: [Numpy-discussion] "moving window" in numpy

2007-11-26 Thread Hans Meine
On Montag 26 November 2007, Matthew Perry wrote: > Hi all, > > I'm not sure if my terminology is familiar but I'm trying to do a > "moving window" analysis (ie a spatial filter or kernel) on a 2-D > array representing elevation. For example, a 3x3 window centered on > each cell is used to calculat

Re: [Numpy-discussion] "moving window" in numpy

2007-11-26 Thread Vincent Schut
Matthew Perry wrote: > Hi all, > > I'm not sure if my terminology is familiar but I'm trying to do a > "moving window" analysis (ie a spatial filter or kernel) on a 2-D > array representing elevation. For example, a 3x3 window centered on > each cell is used to calculate the derivate slope of tha

Re: [Numpy-discussion] "moving window" in numpy

2007-11-25 Thread Bradford Cross
Hi Matthew, I've been working on "rolling/windowed" libraries for quite a while. I'm currently working on implementations for basic moment and rank statistics - they are pretty much done and I am trying to maneuver them into apache commons math for java. I am also interested in implementing the

[Numpy-discussion] "moving window" in numpy

2007-11-25 Thread Matthew Perry
Hi all, I'm not sure if my terminology is familiar but I'm trying to do a "moving window" analysis (ie a spatial filter or kernel) on a 2-D array representing elevation. For example, a 3x3 window centered on each cell is used to calculate the derivate slope of that cell. Can this easily be impl