You are here: Start » AVL.NET » AVS.FitLineToPoints_LTE Method

AVS.FitLineToPoints_LTE Method

Approximates points with a line using Least Trimmed Error algorithm.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void FitLineToPoints_LTE
(
	IList<AvlNet.Point2D> inPoints,
	AvlNet.Range? inRange,
	int inSeedSubsetSize,
	int? inEvalSubsetSize,
	out AvlNet.Line2D outLine
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.IList<AvlNet.Point2D>Input points.
inRangeAvlNet.Range?Determines which array points take part in fitting process. Default value: atl::NIL.
inSeedSubsetSizeint<2, 10>3Number of points in one combination for getting a sample line. Default value: 3.
inEvalSubsetSizeint?<3, INF>Number of closest points used for evaluation of a sample line, or Auto if seed points are to be used. Default value: atl::NIL.
outLineAvlNet.Line2DFitted line.

Function Overrides

See also