SIP Toolbox

edilate - Euclidean morphological dilation of binary

Calling Sequence

Dil = edilate(Img, [radius, form])

Input Parameters

Output Parameters

Description

Function edilate performs exact euclidean dilation of a binary image Img using a circle as the structuring element. It is implemented in C to be fast.

Examples

       Img = gray_imread(SIPDIR+'images/tru.jpg');
       Img = 1-im2bw(Img, 0.3);
       xbasc()
       imshow(Img,2);
       e = edilate(Img,7);
       xbasc()
       imshow(e,2);
   

Authors

Ricardo Fabbri <ricardofabbri (AT) users DOT sf DOT net>

Bibliography

"Shape Analysis and Classification", L. da F. Costa and R. M. Cesar Jr., CRC Press.

Availability

The latest version of the Scilab Image Processing toolbox can be found at

http://siptoolbox.sourceforge.net

See Also

dilate,  erode,  bwdist,  thin,  skel,