You are here: Start » AVL.NET » Invoke.FitLineToPoints3D_LTE
Approximates points in 3D with a line using Least Trimmed Error algorithm.
| Namespace: | Avl | 
|---|---|
| Assembly: | AvlNet.dll | 
Syntax
C++
C#
public static void FitLineToPoints3D_LTE ( List<Avl.Point3D> inPoints, int inSeedSubsetSize, Optional<int> inEvalSubsetSize, out Avl.Line3D outLine, Optional<List<Avl.Point3D>> outLTInliers, Optional<float> outLTError, Diagnostic<int> diagIterationCount )
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]()  | inPoints | System.Collections.Generic.List<Avl.Point3D> | |||
![]()  | inSeedSubsetSize | int | <2, 10> | 3 | Number of points in one combination for getting a sample line. Default value: 3. | 
![]()  | inEvalSubsetSize | Atl.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: atl::NIL. | |
![]()  | outLine | Avl.Line3D | Fitted line. | ||
![]()  | outLTInliers | Atl.Optional<System.Collections.Generic.List<Avl.Point3D>> | Inlying points of the best LTE line. | ||
![]()  | outLTError | Atl.Optional<float> | The Least Trimmed Error. | ||
![]()  | diagIterationCount | Avl.Diagnostic<int> | Number of combinations considered. | 



