<< cv_clahe ComputerVision cv_cornerharris >>

ComputerVision >> ComputerVision > cv_close

cv_close

Perform Close operation on Image

Calling Sequence

img_ret=cv_close(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

Returns Image after performing close operation

Description

Performs Close operation

It is obtained by the dilation of an image followed by an erosion.. It is useful to remove small holes(dark region)

Examples

img_ret=cv_close(input_image,1,[5,5])

See Also


Report an issue
<< cv_clahe ComputerVision cv_cornerharris >>