You are here: Start » AVL.NET » Invoke.ScanExactlyNRidges
Locates a specified number of the strongest dark or bright pixel peak along a given path.
Namespace: | Avl |
---|---|
Assembly: | AvlNet.dll |
Syntax
C++
C#
public static void ScanExactlyNRidges ( Avl.Image inImage, Avl.ScanMap inScanMap, Avl.RidgeScanParams inRidgeScanParams, int inRidgeCount, Avl.Selection inRidgeSelection, float inMinDistance, Optional<float> inMaxDistance, Optional<Avl.LocalBlindness> inLocalBlindness, Conditional<List<Avl.Ridge1D>> outRidges, Conditional<List<Avl.Gap1D>> outGaps, Optional<Avl.Profile> outBrightnessProfile, Optional<Avl.Profile> outResponseProfile )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | Avl.Image | Input image. | ||
![]() | inScanMap | Avl.ScanMap | Data precomputed with CreateScanMap. | ||
![]() | inRidgeScanParams | Avl.RidgeScanParams | RidgeScanParams ( 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 ). | |
![]() | inRidgeCount | int | <0, INF> | 1 | Number of ridges to be found. Default value: 1. |
![]() | inRidgeSelection | Avl.Selection | avl::Selection::Best | Selection mode of the resulting ridges. Default value: avl::Selection::Best. | |
![]() | inMinDistance | float | <0.0f, INF> | 0.0f | Minimal distance between consecutive ridges. Default value: 0.0f. |
![]() | inMaxDistance | Atl.Optional<float> | <0.0f, INF> | Maximal distance between consecutive ridges. Default value: atl::NIL. | |
![]() | inLocalBlindness | Atl.Optional<Avl.LocalBlindness> | Defines conditions in which weaker ridges can be detected in the vicinity of stronger ridges. Default value: atl::NIL. | ||
![]() | outRidges | Atl.Conditional<System.Collections.Generic.List<Avl.Ridge1D>> | Found ridges. | ||
![]() | outGaps | Atl.Conditional<System.Collections.Generic.List<Avl.Gap1D>> | Gaps between consecutive edges. | ||
![]() | outBrightnessProfile | Atl.Optional<Avl.Profile> | Extracted image profile. | ||
![]() | outResponseProfile | Atl.Optional<Avl.Profile> | Profile of the ridge operator response. |