You are here: Start » FIL.NET » Function Reference » Computer Vision » 1D Edge Detection 3D » FIL.ScanExactlyNRidges3D

FIL.ScanExactlyNRidges3D

Locates a specified number of the strongest high or low peaks of surface height along a given path.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void ScanExactlyNRidges3D
(
	FilNet.Surface inSurface,
	FilNet.ScanMap inScanMap,
	FilNet.RidgeScanParams3D inRidgeScanParams,
	int inRidgeCount,
	FilNet.Selection inRidgeSelection,
	float inMinDistance,
	float? inMaxDistance,
	FilNet.LocalBlindness? inLocalBlindness,
	int? inMaxProfileGapWidth,
	INullable<List<FilNet.SurfaceRidge1D>> outRidges,
	FilNet.Profile outHeightProfile,
	FilNet.Profile outResponseProfile
)

Parameters

Name Type Range Default Description
inSurfaceFilNet.SurfaceInput surface.
inScanMapFilNet.ScanMapData precomputed with CreateSurfaceScanMap.
inRidgeScanParamsFilNet.RidgeScanParams3DParameters controlling the surface ridge extraction process.
inRidgeCountint<0, INF>1Number of ridges to be found. Default value: 1.
inRidgeSelectionFilNet.Selectionfil::Selection::BestSelection mode of the resulting ridges. Default value: fil::Selection::Best.
inMinDistancefloat<0.0f, INF>0.0fMinimal distance between consecutive ridges. Default value: 0.0f.
inMaxDistancefloat?<0.0f, INF>Maximal distance between consecutive ridges. Default value: ftl::NIL.
inLocalBlindnessFilNet.LocalBlindness?Defines conditions in which weaker ridges can be detected in the vicinity of stronger ridges. Default value: ftl::NIL.
inMaxProfileGapWidthint?<0, INF>1Maximal number of consecutive not existing profile points. Default value: 1.
outRidgesFilNet.INullable<System.Collections.Generic.List<FilNet.SurfaceRidge1D>>Found surface ridges. This parameter cannot be null.
outHeightProfileFilNet.ProfileExtracted surface height profile.
outResponseProfileFilNet.ProfileProfile of the ridge operator response.

Function Overrides

See also