| [mmthreshad] [Up] [mminfgen] | Sup-generating And Inf-generating |
| User Feedback |
mminfcanon creates the image y by computing intersections of transformations of the image f by inf-generating (i.e., dual of the hit-or-miss) operators. These inf-generating operators are characterized by rotations (in the clockwise or anti-clockwise direction) of theta degrees of the interval Iab.

function y=mminfcanon_equ( f, Iab, theta, DIRECTION )
y = ones(size(f));
y = mmintersec(y,mminfgen(f, Iab));
alpha = theta;
while alpha < 360
Irot = mminterot( Iab, alpha, DIRECTION );
y = mmintersec(y,mminfgen(f, Irot));
alpha = alpha + theta;
end;
| mmfreedom | Control automatic data type conversion. |
| mminfgen | Inf-generating. |
| mmsupcanon | Union of sup-generating or hit-miss operators. |
| [mmthreshad] [Up] [mminfgen] | |
| User Feedback | |
| Copyright (c) 1998-2008 by SDC Information Systems |