| [mmcdil] [Up] [mmdil] | Dilations And Erosions |
| User Feedback |
| f | Image Gray-scale (uint8 or uint16) or binary image |
| g | Image Gray-scale (uint8 or uint16) or binary image
Conditioning image. |
| b | Structuring Element
Default: |
| n | Double Non-negative integer.
Default: (number of iterations). |
| y | Image |
mmcero creates the image y by eroding the image f by the structuring element b conditionally to g. This operator may be applied recursively n times.


function y=mmcero_equ(f,g,b,n)
y = mmunion(f,g);
for i=1:n
ero = mmero(y,b);
y = mmunion(ero,g);
end
| [mmcdil] [Up] [mmdil] | |
| User Feedback | |
| Copyright (c) 1998-2008 by SDC Information Systems |