You are here: Start » AVL.NET » Invoke.FitCircleToSurfaceHole
Fits a circle to a hole in a surface plane.
Namespace: | Avl |
---|---|
Assembly: | AvlNet.dll |
Syntax
C++
C#
public static void FitCircleToSurfaceHole ( Avl.Surface inSurface, Optional<Avl.Region> inRoi, Avl.MEstimator inPlaneOutlierSuppression, float inClippingFactor, int inIterationCount, Optional<Avl.Plane3D> inInitialPlane, Avl.CircleFittingMethod inCircleFittingMethod, Optional<Avl.MEstimator> inCircleOutlierSuppression, Conditional<Avl.Circle3D> outCircle3D, 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 | |
---|---|---|---|---|---|
![]() | inSurface | Avl.Surface | Input surface. | ||
![]() | inRoi | Atl.Optional<Avl.Region> | Region of interest. Default value: atl::NIL. | ||
![]() | inPlaneOutlierSuppression | Avl.MEstimator | Selects a method for ignoring points not lying on the fitted plane. | ||
![]() | 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. | ||
![]() | inCircleFittingMethod | Avl.CircleFittingMethod | Select a method for fitting a circle to a set of points. | ||
![]() | inCircleOutlierSuppression | Atl.Optional<Avl.MEstimator> | Selects a method for ignoring points not lying on the fitted circle. Default value: atl::NIL. | ||
![]() | outCircle3D | Atl.Conditional<Avl.Circle3D> | Circle fitted to a surface hole. | ||
![]() | outPlane | Avl.Plane3D | Plane fitted to the surface points. | ||
![]() | 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 surface points to a resulting plane. | ||
![]() | outSignedDistanceSum | Atl.Optional<float> | Sum of signed distances of the input surface points to a resulting plane. | ||
![]() | outDistanceSum | Atl.Optional<float> | Sum of distances of the input surface points to a resulting plane. | ||
![]() | outSquaredDistances | Atl.Optional<System.Collections.Generic.List<float>> | Squared distances of the input surface points to a resulting plane. | ||
![]() | outSquaredDistanceSum | Atl.Optional<float> | Sum of squared distances of the input surface points to a resulting plane. |