| [mmswatershed] [Up] [mmthin] | Thinning And Thickening |
| User Feedback |
| f | Image Binary image |
| Iab | Interval
Default: |
| n | Double Non-negative integer.
Default: Number of iterations. |
| theta | Double
Default: Degrees of rotation: 45, 90, or 180. |
| DIRECTION | String
Default: Direction of rotation: 'CLOCKWISE' or ' ANTI-CLOCKWISE' |
| y | Image Binary image |
mmthick creates the binary image y by performing a thickening of the binary image f. The number of iterations of the thickening is n and each iteration is performed by union of f with the points that are detected in f by the hit-miss operators characterized by rotations of theta degrees of the interval Iab.

function y = mmthick_equ( f, Iab, n, theta, DIRECTION )
y = f;
for i=1:n
for alpha=0:theta:360-theta
Iab = mminterot(Iab, alpha, DIRECTION);
y = mmunion(y,mmsupgen(y,Iab));
end;
end;
| mmfreedom | Control automatic data type conversion. |
| mmcthick | Image transformation by conditional thickening. |
| mmthin | Image transformation by thinning. |
| mmhomothick | Interval for homotopic thickening. |
| mmse2hmt | Create a Hit-or-Miss Template (or interval) from a pair of structuring elements. |
| [mmswatershed] [Up] [mmthin] | |
| User Feedback | |
| Copyright (c) 1998-2008 by SDC Information Systems |