MATLAB File Help: cv.blur Index
cv.blur

Smoothes an image using the normalized box filter

dst = cv.blur(src)
dst = cv.blur(src, 'OptionName',optionValue, ...)

Input

Output

Options

The function smoothes an image using the kernel:

K = ones(KSize) / prod(KSize)
See also