cv.blur - MATLAB File Help
cv.blur

Smooths an image using the normalized box filter

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

Input

Output

Options

The function smooths an image using the kernel:

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