[mmthreshad] [Up] [mminfgen] | Sup-generating And Inf-generating |
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
.
def mminfcanon(f, Iab, theta=45, DIRECTION="CLOCKWISE"): from string import upper DIRECTION = upper(DIRECTION) y = mmunion(f,1) for t in range(0,360,theta): Irot = mminterot( Iab, t, DIRECTION ) y = mmintersec( y, mminfgen(f, Irot)) return y
mmfreedom | Control automatic data type conversion. |
mminfgen | Inf-generating. |
mmsupcanon | Union of sup-generating or hit-miss operators. |
[mmthreshad] [Up] [mminfgen] | ![]() |
Copyright (c) 2003, Roberto A. Lotufo, UNICAMP-University of Campinas; Rubens C. Machado, CenPRA-Renato Archer Research Center. |