| MATLAB File Help: cv.blur | Index |
Smoothes 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 smoothes an image using the kernel:
K = ones(KSize) / prod(KSize)