[mmAddm] [Up] [mmSubm] Operations

mmIntersec
Intersection of images.

Synopsis

Image mmIntersec ( const Image& f1 , const Image& f2 , const Image& f3 = NullImage, const Image& f4 = NullImage, const Image& f5 = NullImage );

Input

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

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

Or constant.

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

Or constant.

Default: NullImage

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

Or constant.

Default: NullImage

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

Or constant.

Default: NullImage

Output

y Image

Description

mmIntersec creates the image y by taking the pixelwise minimum between the images f1, f2, f3, f4, and f5. When f1, f2, f3, f4, and f5 are binary images, y is the intersection of them.

Equation

intersection:
generalized intersection:

See also

mmUnion Union of images.
[mmAddm] [Up] [mmSubm]