You are here: Start » FIL.NET » FIS.FitSegmentToPoints_TheilSen Method

FIS.FitSegmentToPoints_TheilSen Method

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

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

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

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.IList<FilNet.Point2D>Input points.
inRangeFilNet.Range?Determines which array points take part in fitting process. Default value: ftl::NIL.
inVariantFilNet.TheilSenVariantSwitches between Theil-Sen and Siegel methods.
inSampleLimitint?<5, INF>How many pairs of points are used to estimate orientation. Default value: ftl::NIL.
inOutlierRatiofloat?<0.0f, 0.99f>
outSegmentFilNet.Segment2DFitted segment.
diagOrientationsSystem.Collections.Generic.IList<float>Sample orientations used to determine the output line orientation.

Function Overrides

See also