[mmSeunion] [Up] [mmCero] Dilations And Erosions

mmCdil
Dilate an image conditionally.

Synopsis

Image mmCdil ( 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

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

Equation

See also

mmDil Dilate an image by a structuring element.
mmSebox Create a box structuring element.
mmSecross Diamond structuring element and elementary 3x3 cross.
mmImg2se Create a structuring element from a pair of images.
mmInfrec Inf-reconstruction.
[mmSeunion] [Up] [mmCero]