<< imgradient Morphological Operations imlabel >>

IPCV - Image Processing and Computer Vision Toolbox for Scilab >> Morphological Operations > imhitmiss

imhitmiss

Image Hit-Miss

Syntax

imout = imhitmiss(imin,se)

Parameters

imin :

Input image

se :

Structure element

imout :

Output image

Description

The function perform hit-miss operation on the source image using the specified structuring element.

Examples

S = imread(fullpath(getIPCVpath() + "/images/morpex.png"));
se = imcreatese('ellipse',11,11);
S2 = imhitmiss(S,se);
imshow(S2);

See also

Authors


Report an issue
<< imgradient Morphological Operations imlabel >>