| [mmcbisector] [Up] [mmcloseth] | Residues |
Implemented in Python.
| f | Image Gray-scale (uint8 or uint16) or binary image. |
| bdil | Structuring Element (dilation) Default:
|
| bc | Structuring Element ( connectivity) Default:
|
| y | Image Gray-scale (uint8 or uint16) or binary image. |
mmcloserecth creates the image
y by subtracting the image
f of its closing by reconstruction, defined by the structuring elements
bc and
bdil.
def mmcloserecth(f, bdil=None, bc=None):
if bdil is None: bdil = mmsecross()
if bc is None: bc = mmsecross()
y = mmsubm(mmcloserec(f,bdil,bc), f)
return y
| mmfreedom | Control automatic data type conversion. |
| mmopenrecth | Open-by-Reconstruction Top-Hat. |
| mmcloseth | Closing Top Hat. |
| mmsuprec | Sup-reconstruction. |
| mmclose | Morphological closing. |
| [mmcbisector] [Up] [mmcloseth] | |
| Copyright (c) 2003, Roberto A. Lotufo, UNICAMP-University of Campinas; Rubens C. Machado, CenPRA-Renato Archer Research Center. |