| [mmthick] [Up] [mmwatershed] | 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 |
mmthin creates the binary image y by performing a thinning of the binary image f. The number of iterations of the thinning is n and each iteration is performed by subtracting the points that are detect in f by hit-miss operators characterized by rotations of theta of the interval Iab. When n is infinite and the interval is mmhomothin (default conditions), mmthin gives the skeleton by thinning.

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