MATLAB File Help: cv.medianBlur | Index |
Blurs an image using the median filter
dst = cv.medianBlur(src)
dst = cv.medianBlur(src, 'KSize',ksize)
KSize
is 3 or 5, the
image type should be uint8
, uint16
, or single
. For larger
aperture sizes, it can only be uint8
.src
.The function smoothes an image using the median filter with the
KSize x KSize
aperture. Each channel of a multi-channel image is
processed independently.