Back to Adaptive Vision Library website

You are here: Start » Function Reference » Region Relations » GroupPathsByRegions

GroupPathsByRegions


For each region returns which paths lie inside of it or intersect with it.

Syntax

C++
C#
 
void avl::GroupPathsByRegions
(
	const atl::Array<avl::Path>& inPaths,
	const atl::Array<avl::Region>& inRegions,
	avl::PathMatchingCriterion::Type inMatchingCriterion,
	atl::Array<atl::Array<int> >& outGroupedIndices,
	atl::Optional<atl::Array<atl::Array<avl::Path> >&> outGroupedPaths
)

Parameters

Name Type Default Description
inPaths const Array<Path>&
inRegions const Array<Region>&
inMatchingCriterion PathMatchingCriterion::Type
outGroupedIndices Array<Array<int> >&
outGroupedPaths Optional<Array<Array<Path> >&>

See Also