medianblurcv
Applies the median filter to blur an image.
Syntax
R = medianblurcv(handle, size)
Inputs
- handle
- Handle of an image.
- size
- Aperture linear size. The value of this must be an odd integer greater than 1.
Outputs
- R
- Handle of the output image.
Example
handle = imreadcv('bird1.jpg', 45);
R = medianburcv(handle);