Back to Adaptive Vision Library website
You are here: Start » Function Reference » Image Spatial Transforms » JoinImages

JoinImages
Creates a single image by glueing together the two input images in horizontal or vertical direction.
Syntax
C++
C#
void avl::JoinImages ( const avl::Image& inImage1, const avl::Image& inImage2, avl::JoinDirection::Type inDirection, avl::Image& outImage )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inImage1 | const Image& | First input image | |
![]() |
inImage2 | const Image& | Second input image | |
![]() |
inDirection | JoinDirection::Type | Direction in which images are joined | |
![]() |
outImage | Image& | Output image |
Examples
![]() |
![]() |
![]() |
JoinImages used to join two images side by side into a single image.
Errors
Error type | Description |
---|---|
DomainError | Input images do not have the same pixel format in JoinImages. |
DomainError | Input images do not have compatible dimensions in JoinImages. |
DomainError | Unknown value of JoinDirection in JoinImages. |