You are here: Start » AVL.NET » Invoke.FitPathToRidges3D

Invoke.FitPathToRidges3D

Performs a series of 1D ridge detections and creates a path from the detected points.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void FitPathToRidges3D
(
	Avl.Surface inSurface,
	Avl.PathFittingMap inFittingMap,
	Avl.RidgeScanParams3D inRidgeScanParams,
	Avl.Selection inRidgeSelection,
	Optional<Avl.LocalBlindness> inLocalBlindness,
	Optional<int> inMaxProfileGapWidth,
	Optional<int> inMaxPathInterpolationLength,
	Optional<float> inMaxDeviationDelta,
	float inMaxIncompleteness,
	Conditional<List<Avl.Point3D>> outPath,
	Optional<List<Conditional<Avl.SurfaceRidge1D>>> outRidges,
	Optional<Conditional<Avl.Profile>> outDeviationProfile,
	Optional<List<Avl.Profile>> outHeightProfiles,
	Optional<List<Avl.Profile>> outResponseProfiles,
	Optional<Conditional<List<Avl.Segment3D>>> outPathSegments
)

Parameters

Name Type Range Default Description
inSurfaceAvl.SurfaceSurface to fit the path to.
inFittingMapAvl.PathFittingMapInput fitting map.
inRidgeScanParamsAvl.RidgeScanParams3DParameters controlling the ridge extraction process.
inRidgeSelectionAvl.Selectionavl::SelectionBestSelection mode of ridges. Default value: avl::SelectionBest.
inLocalBlindnessAtl.Optional<Avl.LocalBlindness>Defines conditions in which weaker ridges can be detected in the vicinity of stronger ridges. Default value: atl::NIL.
inMaxProfileGapWidthAtl.Optional<int><0, INF>1Maximal number of consecutive not existing profile points. Default value: 1.
inMaxPathInterpolationLengthAtl.Optional<int>Maximal number of consecutive points not found. Default value: atl::NIL.
inMaxDeviationDeltaAtl.Optional<float><0.0f, INF>Maximal difference between deviations of consecutive path points. Default value: atl::NIL.
inMaxIncompletenessfloat<0.0f, 0.999f>0.1fMaximal fraction of ridge points not found. Default value: 0.1f.
outPathAtl.Conditional<System.Collections.Generic.List<Avl.Point3D>>Fitted path or nothing if the fitting failed.
outRidgesAtl.Optional<System.Collections.Generic.List<Atl.Conditional<Avl.SurfaceRidge1D>>>Found ridges.
outDeviationProfileAtl.Optional<Atl.Conditional<Avl.Profile>>Profile of distances between the actual path points and the corresponding reference path points.
outHeightProfilesAtl.Optional<System.Collections.Generic.List<Avl.Profile>>Extracted surface height profiles.
outResponseProfilesAtl.Optional<System.Collections.Generic.List<Avl.Profile>>Profiles of the ridge operator response.
outPathSegmentsAtl.Optional<Atl.Conditional<System.Collections.Generic.List<Avl.Segment3D>>>Segments of the fitted path or nothing if the fitting failed.

See also