You are here: Start » AVL.NET » Function Reference » Geometry 2D » Geometry 2D Fitting » AVL.FitCircleToPoints

AVL.FitCircleToPoints

Approximates points with a circle using selected outliers suppression method.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void FitCircleToPoints
(
	IList<AvlNet.Point2D> inPoints,
	AvlNet.Range? inRange,
	AvlNet.CircleFittingMethod inFittingMethod,
	AvlNet.MEstimator? inOutlierSuppression,
	out AvlNet.Circle2D? outCircle,
	NullableRef<List<AvlNet.Point2D>> outInliers
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.IList<AvlNet.Point2D>
inRangeAvlNet.Range?Determines which array points take part in fitting process. Default value: atl::NIL.
inFittingMethodAvlNet.CircleFittingMethod
inOutlierSuppressionAvlNet.MEstimator?
outCircleAvlNet.Circle2D?Fitted circle or nothing if method failed to converge.
outInliersAvlNet.NullableRef<System.Collections.Generic.List<AvlNet.Point2D>>Points matching the computed circle. Can be null to skip this parameter calculation.

Description

The operation computes a circle which approximates the input points best. Several methods are available, AlgebraicKasa being the fastest one. It is also the most inaccurate when the input points are sampled along small arc only.

Examples

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

Errors

List of possible exceptions:

Error type Description
DomainError Outlier suppression is supported only in algebraic fitting methods.
DomainError Range exceeds the input point array in FitCircleToPoints.

Function Overrides

See also