You are here: Start » FIL.NET » Invoke.FitPlaneToPoint3DGrid_M
Approximates points of the input grid with a plane using selected M-estimator for outlier suppression.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void FitPlaneToPoint3DGrid_M ( Fil.Point3DGrid inPointGrid, Optional<Fil.Region> inRoi, Fil.MEstimator inOutlierSuppression, float inClippingFactor, int inIterationCount, Optional<Fil.Plane3D> inInitialPlane, out Fil.Plane3D outPlane, Optional<List<Fil.Point3D>> outInliers, Optional<List<float>> outDistances, Optional<float> outSignedDistanceSum, Optional<float> outDistanceSum, Optional<List<float>> outSquaredDistances, Optional<float> outSquaredDistanceSum )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPointGrid | Fil.Point3DGrid | Input point grid. | ||
![]() | inRoi | Ftl.Optional<Fil.Region> | Region of interest. Default value: ftl::NIL. | ||
![]() | inOutlierSuppression | Fil.MEstimator | Selects a method for ignoring points being much different from the rest. | ||
![]() | inClippingFactor | float | <0.675f, 6.0f> | 2.5f | Multitude of standard deviation within which points are considered inliers. Default value: 2.5f. |
![]() | inIterationCount | int | <0, INF> | 5 | Number of iterations of outlier suppressing algorithm. Default value: 5. |
![]() | inInitialPlane | Ftl.Optional<Fil.Plane3D> | Initial approximation (if available). Default value: ftl::NIL. | ||
![]() | outPlane | Fil.Plane3D | Fitted plane. | ||
![]() | outInliers | Ftl.Optional<System.Collections.Generic.List<Fil.Point3D>> | Points matching the computed plane. | ||
![]() | outDistances | Ftl.Optional<System.Collections.Generic.List<float>> | Distances of the input grid points to a resulting plane. | ||
![]() | outSignedDistanceSum | Ftl.Optional<float> | Sum of signed distances of the input grid points to a resulting plane. | ||
![]() | outDistanceSum | Ftl.Optional<float> | Sum of distances of the input grid points to a resulting plane. | ||
![]() | outSquaredDistances | Ftl.Optional<System.Collections.Generic.List<float>> | Squared distances of the input grid points to a resulting plane. | ||
![]() | outSquaredDistanceSum | Ftl.Optional<float> | Sum of squared distances of the input grid points to a resulting plane. |