Back to Adaptive Vision Library website

You are here: Start » Function Reference » Path Features » PathConvexHull

PathConvexHull


Computes the smallest convex shape that contains the given path.

Syntax

C++
C#
 
void avl::PathConvexHull
(
	const avl::Path& inPath,
	avl::Path& outConvexHull
)

Parameters

Name Type Default Description
inPath const Path& Input path
outConvexHull Path& A closed path representing the computed convex hull

Description

The operation computes the smallest of all convex shapes containing the given path.

Examples

PathConvexHull run on a sample path

See Also