[mmCdil] [Up] [mmDil] Dilations And Erosions

mmCero
Erode an image conditionally.

Synopsis

Image mmCero ( const Image& f , const Image& g , const Strel& b = NullStrel, const Double& n = 1 );

Input

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

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

Conditioning image.

b Structuring Element

Default: NullStrel (3x3 elementary cross)

n Double [ Non-negative integer. ]

(number of iterations).

Default: 1

Output

y Image

Description

mmCero creates the image y by eroding the image f by the structuring element b conditionally to g. This operator may be applied recursively n times.

Equation

See also

mmEro Erode an image by a structuring element.
mmImg2se Create a structuring element from a pair of images.
mmSebox Create a box structuring element.
mmSecross Diamond structuring element and elementary 3x3 cross.
mmSuprec Sup-reconstruction.
[mmCdil] [Up] [mmDil]