Local standard deviation of image
performs standard deviation filtering of image J
= stdfilt(I
)I
and returns
the filtered image J
. The value of each output pixel is the
standard deviation of the 3-by-3 neighborhood around the corresponding input pixel.
For pixels on the borders of I
, stdfilt
uses
symmetric padding. In symmetric padding, the values of padding pixels are a mirror
reflection of the border pixels in I
.
If the image contains Inf
s or NaN
s, then the
behavior of stdfilt
is undefined. Propagation of
Inf
s or NaN
s might not be localized to the
neighborhood around the Inf
or NaN
pixel.