[mmLblshow] [Up] [mmGplot] Visualization

mmShow
Display binary or gray-scale images and optionally overlay it with binary images.

Synopsis

Image mmShow ( const Image& f , const Image& f1 = NullImage, const Image& f2 = NullImage, const Image& f3 = NullImage, const Image& f4 = NullImage, const Image& f5 = NullImage, const Image& f6 = NullImage, const String& title = "mmshow", const String& id = "mmshow" );

Input

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

f1 Image [ Binary image ]

Red overlay.

Default: NullImage

f2 Image [ Binary image ]

Green overlay.

Default: NullImage

f3 Image [ Binary image ]

Blue overlay.

Default: NullImage

f4 Image [ Binary image ]

Magenta overlay.

Default: NullImage

f5 Image [ Binary image ]

Yellow overlay.

Default: NullImage

f6 Image [ Binary image ]

Cyan overlay.

Default: NullImage

title String

Default: "mmshow"

id String

Default: "mmshow"

Output

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

Optionally return RGB uint8 image

Description

Displays the binary or gray-scale (uint8 or uint16) image f, and optionally overlay it with up to six binary images f1 to f6 in the following colors: f1 as red, f2 as green, f3 as blue, f4 as yellow, f5 as magenta, and f6 as cian. The image is displayed in the MATLAB figure only if no output parameter is given.

See also

mmLblshow Display a labeled image assigning a random color for each label.
mmSurf Generate a shaded visualization image of a gray-scale image as a topographic model.
[mmLblshow] [Up] [mmGplot]