You are here: Start » AVL.NET » Invoke.FitSegmentToEdges3D
Performs a series of 1D edge detections and finds a segment that best matches the detected points.
Namespace: | Avl |
---|---|
Assembly: | AvlNet.dll |
Syntax
C++
C#
public static void FitSegmentToEdges3D ( Avl.Surface inSurface, Avl.SegmentFittingMap inFittingMap, Avl.EdgeScanParams3D inEdgeScanParams, Avl.Selection inEdgeSelection, Optional<Avl.LocalBlindness> inLocalBlindness, Optional<int> inMaxProfileGapWidth, float inMaxIncompleteness, Optional<Avl.MEstimator> inOutlierSuppression, Conditional<Avl.Segment3D> outSegment, Optional<List<Conditional<Avl.SurfaceEdge1D>>> outEdges, Optional<Conditional<Avl.Profile>> outDeviationProfile, Optional<List<Avl.Point3D>> outInliers, Optional<List<Avl.Profile>> outHeightProfiles, Optional<List<Avl.Profile>> outResponseProfiles )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inSurface | Avl.Surface | Surface to fit segment to. | ||
![]() | inFittingMap | Avl.SegmentFittingMap | Input fitting map. | ||
![]() | inEdgeScanParams | Avl.EdgeScanParams3D | Parameters controlling the edge extraction process. | ||
![]() | inEdgeSelection | Avl.Selection | avl::Selection::Best | Selection mode of edges. Default value: avl::Selection::Best. | |
![]() | inLocalBlindness | Atl.Optional<Avl.LocalBlindness> | Defines conditions in which weaker edges can be detected in the vicinity of stronger edges. Default value: atl::NIL. | ||
![]() | inMaxProfileGapWidth | Atl.Optional<int> | <0, INF> | 1 | Maximal number of consecutive not existing profile points. Default value: 1. |
![]() | inMaxIncompleteness | float | <0.0f, 0.999f> | 0.1f | Maximal fraction of edge points not found. Default value: 0.1f. |
![]() | inOutlierSuppression | Atl.Optional<Avl.MEstimator> | Selects a method for ignoring incorrectly detected points. Default value: atl::NIL. | ||
![]() | outSegment | Atl.Conditional<Avl.Segment3D> | Fitted segment or nothing if the fitting fails. | ||
![]() | outEdges | Atl.Optional<System.Collections.Generic.List<Atl.Conditional<Avl.SurfaceEdge1D>>> | Found edges. | ||
![]() | outDeviationProfile | Atl.Optional<Atl.Conditional<Avl.Profile>> | Profile of distances between the actual segment points and the corresponding reference segment points. | ||
![]() | outInliers | Atl.Optional<System.Collections.Generic.List<Avl.Point3D>> | Points matching the fitting segment. | ||
![]() | outHeightProfiles | Atl.Optional<System.Collections.Generic.List<Avl.Profile>> | Extracted surface height profiles. | ||
![]() | outResponseProfiles | Atl.Optional<System.Collections.Generic.List<Avl.Profile>> | Profiles of the edge (derivative) operator response. |