Back to Adaptive Vision Library website

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

MirrorImage


Reverses the order of the input image columns or rows depending on inMirrorDirection value.

Syntax

C++
C#
 
void avl::MirrorImage
(
	const avl::Image& inImage,
	avl::MirrorDirection::Type inMirrorDirection,
	avl::Image& outImage
)

Parameters

Name Type Default Description
inImage const Image& Input image
inMirrorDirection MirrorDirection::Type Vertical Reverse the order of image columns (horizontal direction) or rows (vertical direction).
outImage Image& Output image

Examples

MirrorImage with inMirrorDirection = Horizontal.

MirrorImage with inMirrorDirection = Vertical.

See Also