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

Invoke.FitPathToRidges3D

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

Namespace:Fil
Assembly:FilNet.dll

Syntax

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

Parameters

Name Type Range Default Description
inSurfaceFil.SurfaceSurface to fit the path to.
inFittingMapFil.PathFittingMapInput fitting map.
inRidgeScanParamsFil.RidgeScanParams3DParameters controlling the ridge extraction process.
inRidgeSelectionFil.Selectionfil::SelectionBestSelection mode of ridges. Default value: fil::SelectionBest.
inLocalBlindnessFtl.Optional<Fil.LocalBlindness>Defines conditions in which weaker ridges can be detected in the vicinity of stronger ridges. Default value: ftl::NIL.
inMaxProfileGapWidthFtl.Optional<int><0, INF>1Maximal number of consecutive not existing profile points. Default value: 1.
inMaxPathInterpolationLengthFtl.Optional<int>Maximal number of consecutive points not found. Default value: ftl::NIL.
inMaxDeviationDeltaFtl.Optional<float><0.0f, INF>Maximal difference between deviations of consecutive path points. Default value: ftl::NIL.
inMaxIncompletenessfloat<0.0f, 0.999f>0.1fMaximal fraction of ridge points not found. Default value: 0.1f.
outPathFtl.Conditional<System.Collections.Generic.List<Fil.Point3D>>Fitted path or nothing if the fitting failed.
outRidgesFtl.Optional<System.Collections.Generic.List<Ftl.Conditional<Fil.SurfaceRidge1D>>>Found ridges.
outDeviationProfileFtl.Optional<Ftl.Conditional<Fil.Profile>>Profile of distances between the actual path points and the corresponding reference path points.
outHeightProfilesFtl.Optional<System.Collections.Generic.List<Fil.Profile>>Extracted surface height profiles.
outResponseProfilesFtl.Optional<System.Collections.Generic.List<Fil.Profile>>Profiles of the ridge operator response.
outPathSegmentsFtl.Optional<Ftl.Conditional<System.Collections.Generic.List<Fil.Segment3D>>>Segments of the fitted path or nothing if the fitting failed.

See also