You are here: Start » AVL.NET » 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 ( AvlNet.Point2D[] inPoints, float inMaxInlierDistance, out AvlNet.Line2D? outLine )
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() | inPoints | AvlNet.Point2D[] | |||
![]() | inMaxInlierDistance | float | <0.0f, INF> | 3.0f | Distance from the output line for a point to be considered an inlier. Default value: 3.0f. |
![]() | outLine | AvlNet.Line2D? |
Errors
| Error type | Description |
|---|---|
| DomainError | Empty point array on input in FitLineToPoints_RANSAC. |


