[Top] [Up] [Prev] [Next] [Up] [Basic Concepts] [Demonstrations] [Functions] SDC Morphology Toolbox V1.1 15Jan02

mminfcanon - Intersection of inf-generating operators.


Synopsis
y = mminfcanon( f, Iab, theta, DIRECTION )
Input
f: Binary image (logical uint8).
Iab: Interval.
theta: Degrees of rotation: 45, 90, or 180. Default: 45.
DIRECTION: String. 'CLOCKWISE' or ' ANTI-CLOCKWISE' Default: "CLOCKWISE".
Output
y: Binary image (logical uint8).
Description
mminfcanon creates the image y by computing intersections of transformations of the image f by inf-generating (i.e., dual of the hit-miss) operators. These inf-generating operators are characterized by rotations (in the clockwise or anti-clockwise direction) of theta degrees of the interval Iab.
Equation

equation

Algorithm
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; 
See Also
mmfreedom - Control automatic data type conversion.
mminfgen - Inf-generating.
mmsupcanon - Union of sup-generating or hit-miss operators.

[Top] [Up] [Prev] [Next] [Up] [Basic Concepts] [Demonstrations] [Functions] Valid XHTML 1.0!
Copyright (c) 1998-2002 by SDC Information Systems