I am using the following code to run uniform filter on my data:
from scipy.ndimage.filters import uniform_filter
a = np.arange(1000)
b = uniform_filter(a, size=10)
The filter right now semms to work as if a stride was set to size // 2. How to adjust the code so that the stride of the filter is not half of the size?
You seem to be misunderstanding what
uniform_filter
is doing.In this case, it creates an array
b
that replaces everya[i]
with the mean of a block of size10
centered ata[i]
. So, something like:Note that this tries to access values with indices outside the range 0..1000. In the default case,
uniform_filter
supposes that the data before position 0 is just a reflection of the data thereafter. And similarly at the end.Also note that
b
uses the same type asa
. In the example wherea
is of integer type, the mean will also be calculated at integer, which can cause some loss of precision.Here is some code and plot to illustrate what's happening: