Blurs an image
img_out = blur(img_in, ksize[, anchor[, borderType]])
Input image (Mat).
Kernel size (double 1x2 matrix).
Position of the anchor in the element (double 1x2 matrix) (default the anchor is at the element center).
Pixel extrapolation method (double) (default BORDER_DEFAULT).
BORDER_DEFAULT
Output image (Mat).
blur is the equivalent of boxFilter with a normalized kernel.
blur
scicv_Init(); img = imread(getSampleImage("lena.jpg")); img_blur = blur(img, [5, 5]); matplot(img_blur); delete_Mat(img); delete_Mat(img_blur);