You are here: Start » AVL.NET » Invoke.Point3DGridHole
Finds a biggest hole in a given section of point cloud.
Namespace: | Avl |
---|---|
Assembly: | AvlNet.dll |
Syntax
C++
C#
public static void Point3DGridHole ( Avl.Point3DGrid inPointGrid, Optional<Avl.Region> inRoi, Avl.MEstimator inPlaneOutlierSuppression, float inClippingFactor, int inIterationCount, Optional<Avl.Plane3D> inInitialPlane, Conditional<Avl.Region> outHoleRegion, Conditional<Avl.Point3D> outHoleCenter, out Avl.Plane3D outPlane, Optional<List<Avl.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 | Avl.Point3DGrid | |||
![]() | inRoi | Atl.Optional<Avl.Region> | Range of pixels to be processed. Default value: atl::NIL. | ||
![]() | inPlaneOutlierSuppression | Avl.MEstimator | |||
![]() | 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 | Atl.Optional<Avl.Plane3D> | Initial approximation of a plane (if available). Default value: atl::NIL. | ||
![]() | outHoleRegion | Atl.Conditional<Avl.Region> | Region of the found hole. | ||
![]() | outHoleCenter | Atl.Conditional<Avl.Point3D> | Center of the found hole. | ||
![]() | outPlane | Avl.Plane3D | |||
![]() | outInliers | Atl.Optional<System.Collections.Generic.List<Avl.Point3D>> | Points matching the computed plane. | ||
![]() | outDistances | Atl.Optional<System.Collections.Generic.List<float>> | Distances of the input points to a resulting plane. | ||
![]() | outSignedDistanceSum | Atl.Optional<float> | Sum of signed distances of the input points to a resulting plane. | ||
![]() | outDistanceSum | Atl.Optional<float> | Sum of distances of the input points to a resulting plane. | ||
![]() | outSquaredDistances | Atl.Optional<System.Collections.Generic.List<float>> | Squared distances of the input points to a resulting plane. | ||
![]() | outSquaredDistanceSum | Atl.Optional<float> | Sum of squared distances of the input points to a resulting plane. |