Back to Adaptive Vision Library website

You are here: Start » Function Reference » Region » Region Basics » CreatePathRegion

CreatePathRegion


Header: AVL.h
Namespace: avl
Module: FoundationLite

Creates a region along the given path.

Syntax

C++
C#
 
void avl::CreatePathRegion
(
	const avl::Path& inPath,
	atl::Optional<const avl::CoordinateSystem2D&> inPathAlignment,
	float inWidth,
	int inFrameWidth,
	int inFrameHeight,
	avl::Region& outRegion,
	atl::Optional<avl::Path&> outAlignedPath = atl::NIL
)

Parameters

Name Type Range Default Description
inPath const Path& Input path
inPathAlignment Optional<const CoordinateSystem2D&> NIL Adjusts the path to the position of the inspected object
inWidth float 1.0 - 1.0f Width of line used to draw path
inFrameWidth int 0 - 65535 Width of the created region's frame
inFrameHeight int 0 - 65535 Height of the created region's frame
outRegion Region& Output region
outAlignedPath Optional<Path&> NIL The input path transformed to the absolute coordinate system

Optional Outputs

The computation of following outputs can be switched off by passing value atl::NIL to these parameters: outAlignedPath.

Read more about Optional Outputs.