[mmAppend] [Up] [mmLimits] Image Information and Manipulation

mmConcat
Concatenate two or more images along width, height or depth.

Synopsis

Image mmConcat ( const String& DIM , const Image& X1 , const Image& X2 , const Image& X3 = NullImage, const Image& X4 = NullImage );

Input

DIM String

Dimension to concatenate. 'WIDTH' or 'W', 'HEIGHT' or 'H', or ' DEPTH' or 'D'.

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

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

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

Default: NullImage

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

Default: NullImage

Output

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

Description

Concatenate two or more images in any of the dimensions: width, height or depth. If the images do not match the dimension, a larger image is create with zero pixels to accommodate them. The images must have the same datatype.

See also

mmAppend Append two images along width, height or depth.
mmShow Display binary or gray-scale images and optionally overlay it with binary images.
[mmAppend] [Up] [mmLimits]