Back to Adaptive Vision Library website

You are here: Start » Function Reference » Geometry 2D Fitting » FitSegmentToPoints

FitSegmentToPoints


Approximates points with a segment using selected outliers suppression method.

Syntax

C++
C#
 
void avl::FitSegmentToPoints
(
	const atl::Array<avl::Point2D>& inPoints,
	atl::Optional<avl::MEstimator::Type> inOutlierSuppression,
	avl::Segment2D& outSegment
)

Parameters

Name Type Default Description
inPoints const Array<Point2D>&
inOutlierSuppression Optional<MEstimator::Type> NIL
outSegment Segment2D&

Description

The orientation of the resulting outSegment is always between 0 and 180 degrees.

Examples

The resulting outSegment drawn with the input points, inOutlierSuppression = Auto.