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

AVL.ScanSingleRidge3D

Locates the strongest high or low peak of surface height along a given path.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void ScanSingleRidge3D
(
	AvlNet.Surface inSurface,
	AvlNet.ScanMap inScanMap,
	AvlNet.RidgeScanParams3D inRidgeScanParams,
	AvlNet.Selection inRidgeSelection,
	AvlNet.LocalBlindness? inLocalBlindness,
	int? inMaxProfileGapWidth,
	out AvlNet.SurfaceRidge1D? outRidge,
	NullableRef<AvlNet.Profile> outHeightProfile,
	NullableRef<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.
inRidgeSelectionAvlNet.Selectionavl::Selection::BestSelection mode of the resulting ridge. Default value: avl::Selection::Best.
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.
outRidgeAvlNet.SurfaceRidge1D?Found surface ridge.
outHeightProfileAvlNet.NullableRef<AvlNet.Profile>Extracted surface height profile. Can be null to skip this parameter calculation.
outResponseProfileAvlNet.NullableRef<AvlNet.Profile>Profile of the ridge operator response. Can be null to skip this parameter calculation.

Function Overrides

See also