You are here: Start » AVL.NET » Function Reference » Image » Image Combinators » AVL.ComposeImages

AVL.ComposeImages

Takes pixels from the first image within the specified region and from the other one elsewhere.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void ComposeImages
(
	AvlNet.Image inImage1,
	AvlNet.Image inImage2,
	AvlNet.Region inRegion,
	NullableRef<AvlNet.Region> inRoi,
	AvlNet.Image outImage
)

Parameters

Name Type Range Default Description
inImage1AvlNet.ImageFirst source of pixels marked in inRegion.
inImage2AvlNet.ImageBackground image.
inRegionAvlNet.RegionRegion which describes which pixels should be taken from inImage1.
inRoiAvlNet.NullableRef<AvlNet.Region>Region in which pixels should be processed otherwise black pixels are placed. Default value: atl::NIL.
outImageAvlNet.ImageImage composed of tho input images.

Description

The operation computes the composition of two images. Each outImage pixel is equal to the corresponding pixel of inImage1 iff its location lies inside the inRegion; otherwise the pixel is equal to the corresponding pixel of the inImage2.

The operation requires that the images being processed have equal format and dimensions, otherwise an error with appropriate description occurs. To obtain an image of desired dimensions one can use ResizeImage or CropImage filter. To alter the pixel type of an image one can use ConvertPixelType filter. ConvertToMultichannel and AverageChannels filters allow to alter the number of image channels.

Examples

Example inImage1 and inImage2.

Example inRegion and the result of ComposeImages

Errors

List of possible exceptions:

Error type Description
DomainError Image formats are not the same in ComposeImages.
DomainError Image sizes are not equal in ComposeImages.
DomainError Input region exceeds an input image in ComposeImages.
DomainError Input ROI exceeds an input image in ComposeImages.

Function Overrides

See also