You are here: Start » FIL.NET » FIS.FitSegmentToPoints3D_RANSAC Method
FIS.FitSegmentToPoints3D_RANSAC Method
Approximates points in 3D with a segment using a RANSAC algorithm.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
public static void FitSegmentToPoints3D_RANSAC ( IList<FilNet.Point3D> inPoints, int? inMaxOutlierCount, float inMaxInlierDistance, int? inIterationCount, INullable<FilNet.Segment3D> outSegment )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPoints | System.Collections.Generic.IList<FilNet.Point3D> | |||
![]() | inMaxOutlierCount | int? | <0, INF> | Determines how many outlier points can be present to end the search. Default value: ftl::NIL. | |
![]() | inMaxInlierDistance | float | <0.0f, INF> | 3.0f | Distance from the output line for a point to be considered an inlier. Default value: 3.0f. |
![]() | inIterationCount | int? | <1, INF> | 42 | Number of iterations; Auto means that all point pairs will be used. Default value: 42. |
![]() | outSegment | FilNet.INullable<FilNet.Segment3D> | This parameter cannot be null. |