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

AVL.ScanMultipleRidges3D

Locates multiple high or low peaks of surface height along a given path.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void ScanMultipleRidges3D
(
	AvlNet.Surface inSurface,
	AvlNet.ScanMap inScanMap,
	AvlNet.RidgeScanParams3D inRidgeScanParams,
	float inMinDistance,
	float? inMaxDistance,
	AvlNet.LocalBlindness? inLocalBlindness,
	int? inMaxProfileGapWidth,
	IList<AvlNet.SurfaceRidge1D> outRidges,
	AvlNet.Profile outHeightProfile,
	AvlNet.Profile outResponseProfile
)

Parameters

Name Type Range Default Description
inSurfaceAvlNet.SurfaceInput surface.
inScanMapAvlNet.ScanMapData precomputed with CreateSurfaceScanMap.
inRidgeScanParamsAvlNet.RidgeScanParams3DParameters controlling the surface ridge extraction process.
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: atl::NIL.
inLocalBlindnessAvlNet.LocalBlindness?Defines conditions in which weaker ridges can be detected in the vicinity of stronger ridges. Default value: atl::NIL.
inMaxProfileGapWidthint?<0, INF>1Maximal number of consecutive not existing profile points. Default value: 1.
outRidgesSystem.Collections.Generic.IList<AvlNet.SurfaceRidge1D>Found surface ridges.
outHeightProfileAvlNet.ProfileExtracted surface height profile.
outResponseProfileAvlNet.ProfileProfile of the ridge operator response.

Function Overrides

See also