[mminfcanon] [Up] [mmsupcanon] Sup-generating And Inf-generating

mminfgen
Inf-generating.

Synopsis

y = mminfgen( f, Iab )

Implemented in Python.

Input

f Image Binary image.
Iab Interval

Output

y Image Binary image.

Description

mminfgen creates the image y by computing the transformation of the image f by the inf-generating operator (or dual of the hit-or-miss) characterized by the interval Iab.

Equation

Source Code

def mminfgen(f, Iab):
    A,Bc = Iab
    y = mmunion(mmdil( f, A),mmdil( mmneg(f), Bc))
    return y
    

See also

mmfreedom Control automatic data type conversion.
mmsupgen Sup-generating (hit-miss).
mminfcanon Intersection of inf-generating operators.
[mminfcanon] [Up] [mmsupcanon] Python