You are here: Start » FIL.NET » Invoke.FitLineToPoints_TheilSen

Invoke.FitLineToPoints_TheilSen

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

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void FitLineToPoints_TheilSen
(
	List<Fil.Point2D> inPoints,
	Optional<Fil.Range> inRange,
	Fil.TheilSenVariant inVariant,
	Optional<int> inSampleLimit,
	Optional<float> inOutlierRatio,
	out Fil.Line2D outLine,
	Diagnostic<List<float>> diagOrientations
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.List<Fil.Point2D>Input points.
inRangeFtl.Optional<Fil.Range>Determines which array points take part in fitting process. Default value: ftl::NIL.
inVariantFil.TheilSenVariantSwitches between Theil-Sen and Siegel methods.
inSampleLimitFtl.Optional<int><5, INF>How many pairs of points are used to estimate orientation. Default value: ftl::NIL.
inOutlierRatioFtl.Optional<float><0.0f, 0.99f>
outLineFil.Line2DFitted line.
diagOrientationsFil.Diagnostic<System.Collections.Generic.List<float>>Sample orientations used to determine the output line orientation.

See also