[mmAsf] [Up] [mmOpen] Morphological Filters

mmClose
Morphological closing.

Synopsis

Image mmClose ( const Image& f , const Strel& b = NullStrel );

Input

f Image [ Gray-scale (uint8 or uint16) or binary image ]

b Structuring Element

Default: NullStrel (3x3 elementary cross)

Output

y Image

Description

mmClose creates the image y by the morphological closing of the image f by the structuring element b. In the binary case, the closing by a structuring element B may be interpreted as the intersection of all the binary images that contain the image f and have a hole equal to a translation of B. In the gray-scale case, there is a similar interpretation taking the functions umbra.

Equation

See also

mmOpen Morphological opening.
mmSebox Create a box structuring element.
mmSecross Diamond structuring element and elementary 3x3 cross.
mmImg2se Create a structuring element from a pair of images.
mmSesum N-1 iterative Minkowski additions
[mmAsf] [Up] [mmOpen]