You are here: Start » AVL.NET » AVL.ScanMultipleRidges(AvlNet.Image, AvlNet.ScanMap, AvlNet.RidgeScanParams, float, float?, AvlNet.LocalBlindness, AvlNet.Ridge1D[], AvlNet.Gap1D[])

AVL.ScanMultipleRidges(AvlNet.Image, AvlNet.ScanMap, AvlNet.RidgeScanParams, float, float?, AvlNet.LocalBlindness, AvlNet.Ridge1D[], AvlNet.Gap1D[])

Locates multiple dark or bright pixel peaks along a given path.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax


public static void ScanMultipleRidges(
	AvlNet.Image inImage,
	AvlNet.ScanMap inScanMap,
	AvlNet.RidgeScanParams inRidgeScanParams,
	float inMinDistance,
	float? inMaxDistance,
	AvlNet.LocalBlindness inLocalBlindness,
	out AvlNet.Ridge1D[] outRidges,
	out AvlNet.Gap1D[] outGaps
)

Parameters

inImage
Type: AvlNet.Image
Input image
inScanMap
Type: AvlNet.ScanMap
Data precomputed with CreateScanMap
inRidgeScanParams
Type: AvlNet.RidgeScanParams
Parameters controlling the ridge extraction process
inMinDistance
Type: System.Single
Minimal distance between consecutive ridges
inMaxDistance
Type: System.Nullable<System.Single>
Maximal distance between consecutive ridges, or null.
inLocalBlindness
Type: AvlNet.LocalBlindness
Defines conditions in which weaker ridges can be detected in the vicinity of stronger ridges, or null.
outRidges
Type: AvlNet.Ridge1D
Found ridges
outGaps
Type: AvlNet.Gap1D
Gaps between consecutive ridges

See also