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

AVL.FitSegmentToPoints_TheilSen

Approximates points with a segment using TheilSen algorithm, optionally with Siegel's improvement.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void FitSegmentToPoints_TheilSen
(
	IList<AvlNet.Point2D> inPoints,
	AvlNet.Range? inRange,
	AvlNet.TheilSenVariant inVariant,
	int? inSampleLimit,
	float? inOutlierRatio,
	out AvlNet.Segment2D outSegment,
	IList<float> diagOrientations
)

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.
inVariantAvlNet.TheilSenVariantSwitches between Theil-Sen and Siegel methods.
inSampleLimitint?<5, INF>How many pairs of points are used to estimate orientation. Default value: atl::NIL.
inOutlierRatiofloat?<0.0f, 0.99f>
outSegmentAvlNet.Segment2DFitted segment.
diagOrientationsSystem.Collections.Generic.IList<float>Sample orientations used to determine the output line orientation.

Errors

List of possible exceptions:

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

Function Overrides

See also