You are here: Start » AVL.NET » Invoke.ProfileRidges
Finds the high or low peaks in the input profile.
Namespace: | Avl |
---|---|
Assembly: | AvlNet.dll |
Syntax
C++
C#
public static void ProfileRidges ( Avl.Profile inProfile, Optional<Avl.Range> inRange, bool inCyclic, Avl.RidgeScanParams inRidgeScanParams, float inMinDistance, Optional<float> inMaxDistance, Optional<Avl.LocalBlindness> inLocalBlindness, List<Avl.ProfileRidge> outRidges, Optional<List<float>> outDistances, Optional<Avl.Profile> outResponseProfile )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inProfile | Avl.Profile | Input profile. | ||
![]() | inRange | Atl.Optional<Avl.Range> | |||
![]() | inCyclic | bool | |||
![]() | inRidgeScanParams | Avl.RidgeScanParams | RidgeScanParams ( ProfileInterpolation: Quadratic4 SmoothingStdDev: 0.6f RidgeWidth: 5 RidgeMargin: 2 MinMagnitude: 5.0f RidgePolarity: Bright ) | Parameters controlling the ridge extraction process. Default value: RidgeScanParams ( ProfileInterpolation: Quadratic4 SmoothingStdDev: 0.6f RidgeWidth: 5 RidgeMargin: 2 MinMagnitude: 5.0f RidgePolarity: Bright ). | |
![]() | 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 | System.Collections.Generic.List<Avl.ProfileRidge> | Found ridges. | ||
![]() | outDistances | Atl.Optional<System.Collections.Generic.List<float>> | Output distances between consecutive ridges. | ||
![]() | outResponseProfile | Atl.Optional<Avl.Profile> | Profile of the ridge operator response. |