<< cv_match_template ComputerVision cv_ones >>

ComputerVision >> ComputerVision > cv_medianblur

cv_medianblur

Blurs an image using the median Filter

Calling Sequence

img_ret=cv_medianblur(image,kernel_type,kernel_size)

Arguments

image

Input image

kernel_type

It accepts Integer/Float As Input 1->MORPH_RECT 2-> MORPH_ELLIPSE 3-> MORPH_CROSS

kernel_size

It accepts a list as input specifying the size of Kernel needed example [5,5]

img_ret

Blurred Image

Description

Median Blur

The function smoothes an image using the median Filter With the ksize x ksize aperture. Each channel of a multi-channel image Is processed independently

Examples

[img_ret]=cv_medianblur(input_image,1,[5,5]);

See Also


Report an issue
<< cv_match_template ComputerVision cv_ones >>