[mmsurf] [Up] [mmdtshow] Visualization

mmbshow
Generate a graphical representation of overlaid binary images.

Synopsis

function y = mmbshow ( f1 , f2 , f3 , factor )

Input

f1 Image Binary image
f2 Image Binary image

Default: NULL

f3 Image Binary image

Default: NULL

factor Double

Default: 17

Expansion factor for the output image. Use odd values above 9.

Output

y Image Binary image

shaded image.

Description

Generate an expanded binary image as a graphical representation of up to three binary input images. The 1-pixels of the first image are represented by square contours, the pixels of the optional second image are represented by circles and for the third image they are represented by shaded squares. This function is useful to create graphical illustration of small images.

Examples

f1=mmtext('b');
f2=mmtext('w');
g2=mmbshow(f1,f2);
mmshow(g2);
f3=mmtext('x');
g3=mmbshow(f1,f2,f3);
mmshow(g3);
g2 g3

See also

mmshow Display binary or gray-scale images and optionally overlay it with binary images.
mmseshow Display a structuring element as an image.
[mmsurf] [Up] [mmdtshow]