Back to FabImage Library website
You are here: Start » Function Reference » Point3DGrid » Point3DGrid Fitting » FitPlaneToPoint3DGrid_M

FitPlaneToPoint3DGrid_M
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | Vision3DStandard |
Approximates points of the input grid with a plane using selected M-estimator for outlier suppression.
Applications: Finding a locally optimal plane. Good enough when the number of outliers is small.
Syntax
C++
C#
void fil::FitPlaneToPoint3DGrid_M ( const fil::Point3DGrid& inPointGrid, ftl::Optional<const fil::Region&> inRoi, fil::MEstimator::Type inOutlierSuppression, float inClippingFactor, int inIterationCount, ftl::Optional<const fil::Plane3D&> inInitialPlane, fil::Plane3D& outPlane, ftl::Optional<ftl::Array<fil::Point3D>&> outInliers = ftl::NIL, ftl::Optional<ftl::Array<float>&> outDistances = ftl::NIL, ftl::Optional<float&> outSignedDistanceSum = ftl::NIL, ftl::Optional<float&> outDistanceSum = ftl::NIL, ftl::Optional<ftl::Array<float>&> outSquaredDistances = ftl::NIL, ftl::Optional<float&> outSquaredDistanceSum = ftl::NIL )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() |
inPointGrid | const Point3DGrid& | Input point grid | ||
![]() |
inRoi | Optional<const Region&> | NIL | Region of interest | |
![]() |
inOutlierSuppression | MEstimator::Type | Selects a method for ignoring points being much different from the rest | ||
![]() |
inClippingFactor | float | 0.675 - 6.0 | 2.5f | Multitude of standard deviation within which points are considered inliers |
![]() |
inIterationCount | int | 0 - ![]() |
5 | Number of iterations of outlier suppressing algorithm |
![]() |
inInitialPlane | Optional<const Plane3D&> | NIL | Initial approximation (if available) | |
![]() |
outPlane | Plane3D& | Fitted plane | ||
![]() |
outInliers | Optional<Array<Point3D>&> | NIL | Points matching the computed plane | |
![]() |
outDistances | Optional<Array<float>&> | NIL | Distances of the input grid points to a resulting plane | |
![]() |
outSignedDistanceSum | Optional<float&> | NIL | Sum of signed distances of the input grid points to a resulting plane | |
![]() |
outDistanceSum | Optional<float&> | NIL | Sum of distances of the input grid points to a resulting plane | |
![]() |
outSquaredDistances | Optional<Array<float>&> | NIL | Squared distances of the input grid points to a resulting plane | |
![]() |
outSquaredDistanceSum | Optional<float&> | NIL | Sum of squared distances of the input grid points to a resulting plane |
Optional Outputs
The computation of following outputs can be switched off by passing value ftl::NIL
to these parameters: outInliers, outDistances, outSignedDistanceSum, outDistanceSum, outSquaredDistances, outSquaredDistanceSum.
Read more about Optional Outputs.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | No points to fit the plane to in FitPlaneToPoint3DGrid_M. |