cv.blur - MATLAB File Help |
Smooths an image using the normalized box filter
dst = cv.blur(src)
dst = cv.blur(src, 'OptionName',optionValue, ...)
uint8
, uint16
,
int16
, single
, or double
.src
.[x,y]
. The default value [-1,-1]
means that
the anchor is at the kernel center.The function smooths an image using the kernel:
K = ones(KSize) / prod(KSize)