FF = medianf(F) applies a median filter to the scalar/vector field(s) F,
using the function MEDFILT2 available in the Image Processing Toolbox.
FF = medianf(F, [M N], ITER) specifies the size of the median filter,
[M,N], and the number of iterations, ITER. By default, M=N=3 and
ITER=1.
FF = medianf(F, [M N], ITER, 'Property', ...) specifies:
'valid' : truncates the borders (remove border effects)
'verbose' : displays the work in progress
Examples
showvec(medianf(loadvec('B00001.vec')));
See Also
filterf, bwfilterf, addnoisef, MEDFILT2.