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

AVL.FitLineToPoints_RANSAC

Approximates points with a line using a RANSAC algorithm.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void FitLineToPoints_RANSAC
(
	IList<AvlNet.Point2D> inPoints,
	float inMaxInlierDistance,
	out AvlNet.Line2D? outLine
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.IList<AvlNet.Point2D>
inMaxInlierDistancefloat<0.0f, INF>3.0fDistance from the output line for a point to be considered an inlier. Default value: 3.0f.
outLineAvlNet.Line2D?

Errors

List of possible exceptions:

Error type Description
DomainError Empty array of points in FitLineToPoints_RANSAC.
DomainError Range exceeds the input point array in FitLineToPoints_RANSAC.

Function Overrides

See also