Back to Adaptive Vision Library website

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

FitArcToPoints


Approximates points with an arc using the selected outliers suppression method.

Syntax

C++
C#
 
void avl::FitArcToPoints
(
	const atl::Array<avl::Point2D>& inPoints,
	avl::CircleFittingMethod::Type inFittingMethod,
	atl::Optional<avl::MEstimator::Type> inOutlierSuppression,
	atl::Conditional<avl::Arc2D>& outArc
)

Parameters

Name Type Default Description
inPoints const Array<Point2D>&
inFittingMethod CircleFittingMethod::Type
inOutlierSuppression Optional<MEstimator::Type> NIL
outArc Conditional<Arc2D>& Fitted arc or nothing if the computations failed to converge

Examples

The resulting outArc drawn with the input points, inFittingMethod = AlgebraicKasa and inOutlierSuppression = Auto.