You are here: Start » FIL.NET » Invoke.FitLineToPoints_LTE
Approximates points with a line using Least Trimmed Error algorithm.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void FitLineToPoints_LTE ( List<Fil.Point2D> inPoints, Optional<Fil.Range> inRange, int inSeedSubsetSize, Optional<int> inEvalSubsetSize, out Fil.Line2D outLine, Optional<List<Fil.Point2D>> outLTInliers, Optional<float> outLTError, Diagnostic<int> diagIterationCount )
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. | ||
![]() | inSeedSubsetSize | int | <2, 10> | 3 | Number of points in one combination for getting a sample line. Default value: 3. |
![]() | inEvalSubsetSize | Ftl.Optional<int> | <3, INF> | Number of closest points used for evaluation of a sample line, or Auto if seed points are to be used. Default value: ftl::NIL. | |
![]() | outLine | Fil.Line2D | Fitted line. | ||
![]() | outLTInliers | Ftl.Optional<System.Collections.Generic.List<Fil.Point2D>> | Inlying points of the best LTE line. | ||
![]() | outLTError | Ftl.Optional<float> | The Least Trimmed Error. | ||
![]() | diagIterationCount | Fil.Diagnostic<int> | Number of combinations considered. |