Back to Aurora Vision Library Lite website

You are here: Start » Path » Path Spatial Transforms » AlignPathArray

AlignPathArray


Header: AVL.h
Namespace: avl

Moves an array of paths from a local coordinate system to the absolute one.

Applications: Required when there are paths defined in a local coordinate system, but the next image-related filter in the program does not have any inAlignment input.

Syntax

void avl::AlignPathArray
(
	const atl::Array<avl::Path>& inPaths,
	const avl::CoordinateSystem2D& inAlignment,
	bool inInverse,
	atl::Array<avl::Path>& outAlignedPaths
)

Parameters

Name Type Default Description
Input value inPaths const Array<Path>&
Input value inAlignment const CoordinateSystem2D& Coordinate system to align to
Input value inInverse bool Switches to the inverse transform
Output value outAlignedPaths Array<Path>&

In-place Processing

This function supports in-place data processing - you can pass the same reference to inPaths and outAlignedPaths

Read more about In-place Computation.