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

mmcloseth - Closing Top Hat.


Synopsis
y = mmcloseth( f, b )
Input
f: Gray-scale (uint8 or uint16) or binary image (logical uint8).
b: Structuring element. Default: Elementary cross (mmsecross).
Output
y: Gray-scale (uint8 or uint16) or binary image (logical uint8). (Same type of f).
Description
mmcloseth creates the image y by subtracting the image f of its morphological closing by the structuring element b.
Examples
a = mmreadgray('danaus.tif');
mmshow(a);
b = mmcloseth(a,mmsebox(5));
mmshow(b); 
image
(a)
image
(b)
Equation

equation

Algorithm
function y=mmcloseth_equ( f, b)
  y = mmsubm(mmclose(f, b),f); 
See Also
mmclose - Morphological closing.
mmcloserecth - Close-by-Reconstruction Top-Hat.
mmfreedom - Control automatic data type conversion.
mmgradm - Morphological gradient.
mmopenth - Opening Top Hat.

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