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

AVL.FitSegmentToPoints_LTE

Approximates points with a segment using Least Trimmed Error algorithm.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void FitSegmentToPoints_LTE
(
	IList<AvlNet.Point2D> inPoints,
	int inSeedSubsetSize,
	out AvlNet.Segment2D outSegment
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.IList<AvlNet.Point2D>Input points.
inSeedSubsetSizeint<2, 10>3Number of points in one combination for getting a sample segment. Default value: 3.
outSegmentAvlNet.Segment2DFitted segment.

Errors

List of possible exceptions:

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

Function Overrides

See also