Back to Adaptive Vision Library website

You are here: Start » Function Reference » Image Spatial Transforms » UncropImage

UncropImage


Inverse of CropImage.

Syntax

C++
C#
 
void avl::UncropImage
(
	const avl::Image& inImage,
	const avl::Box& inSelection,
	int inWidth,
	int inHeight,
	avl::Image& outImage
)

Parameters

Name Type Range Default Description
inImage const Image& Input image
inSelection const Box& The same value as in CropImage
inWidth int 0 - Width of the original image
inHeight int 0 - Height of the original image
outImage Image& Output image

Description

The operation translates an image to original coordinates. Dimensions of outImage depends on inWidth and inHeight.

See Also