You are here: Start » FIL.NET » 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 | |
---|---|---|---|---|---|
![]() | inPoints | System.Collections.Generic.List<Fil.Point2D> | Input points. | ||
![]() | inRange | Ftl.Optional<Fil.Range> | Determines which array points take part in fitting process. Default value: ftl::NIL. | ||
![]() | inVariant | Fil.TheilSenVariant | Switches between Theil-Sen and Siegel methods. | ||
![]() | inSampleLimit | Ftl.Optional<int> | <5, INF> | How many pairs of points are used to estimate orientation. Default value: ftl::NIL. | |
![]() | inOutlierRatio | Ftl.Optional<float> | <0.0f, 0.99f> | ||
![]() | outLine | Fil.Line2D | Fitted line. | ||
![]() | diagOrientations | Fil.Diagnostic<System.Collections.Generic.List<float>> | Sample orientations used to determine the output line orientation. |