You are here: Start » AVL.NET » Invoke.ScanSingleRidge

Invoke.ScanSingleRidge

Locates the strongest dark or bright pixel peak along a given path.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void ScanSingleRidge
(
	Avl.Image inImage,
	Avl.ScanMap inScanMap,
	Avl.RidgeScanParams inRidgeScanParams,
	Avl.Selection inRidgeSelection,
	Optional<Avl.LocalBlindness> inLocalBlindness,
	Conditional<Avl.Ridge1D> outRidge,
	Optional<Avl.Profile> outBrightnessProfile,
	Optional<Avl.Profile> outResponseProfile
)

Parameters

Name Type Range Default Description
inImageAvl.ImageInput image.
inScanMapAvl.ScanMapData precomputed with CreateScanMap.
inRidgeScanParamsAvl.RidgeScanParamsRidgeScanParams ( ProfileInterpolation: Quadratic4 SmoothingStdDev: 0.6f RidgeWidth: 5 RidgeMargin: 2 MinMagnitude: 5.0f RidgePolarity: Dark )Parameters controlling the ridge extraction process. Default value: RidgeScanParams ( ProfileInterpolation: Quadratic4 SmoothingStdDev: 0.6f RidgeWidth: 5 RidgeMargin: 2 MinMagnitude: 5.0f RidgePolarity: Dark ).
inRidgeSelectionAvl.Selectionavl::Selection::BestSelection mode of the resulting ridge. Default value: avl::Selection::Best.
inLocalBlindnessAtl.Optional<Avl.LocalBlindness>Defines conditions in which weaker ridges can be detected in the vicinity of stronger ridges. Default value: atl::NIL.
outRidgeAtl.Conditional<Avl.Ridge1D>Found ridge.
outBrightnessProfileAtl.Optional<Avl.Profile>Extracted image profile.
outResponseProfileAtl.Optional<Avl.Profile>Profile of the ridge operator response.

See also