Back to Adaptive Vision Library website

You are here: Start » Function Reference » Image Tiling » JoinImageTiles

JoinImageTiles


Header:AVL.h
Namespace:avl

Joins previously cut tiles into single image.

Syntax

C++
C#
 
void avl::JoinImageTiles
(
	const atl::Array<avl::Image>& inImages,
	const int inRowCount,
	const int inColumnCount,
	avl::Image& outJoinedImage
)

Parameters

Name Type Range Default Description
inImages const Array<Image>& Array of image tiles.
inRowCount const int 1 - Defines how many output image rows there are in inImages.
inColumnCount const int 1 - Defines how many images builds one row in inImages.
outJoinedImage Image& Glued image.

Description

Joins an array of images into one image.

Examples

JoinImageTiles glues together an array of images with inRowCount = 2 and inColumnCount = 2.

Errors

List of possible exceptions:

Error type Description
DomainError Product of inRowCount and inColumnCount must be equal to size of inImages array in JoinImageTiles.
RuntimeError Could not join images in JoinImageTiles.

See Also