You are here: Start » AVL.NET » Invoke.DetectRidges_AsRegion
Extracts a pixel-precise region of bright or dark thin lines.
| Namespace: | Avl | 
|---|---|
| Assembly: | AvlNet.dll | 
Syntax
C++
C#
public static void DetectRidges_AsRegion ( Avl.Image inImage, Optional<Avl.Region> inRoi, float inStdDevX, Optional<float> inStdDevY, float inRidgeThreshold, float inRidgeHysteresis, Avl.Polarity inPolarity, int inMinBlobArea, Avl.Region outRidgeRegion )
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]()  | inImage | Avl.Image | Input image. | ||
![]()  | inRoi | Atl.Optional<Avl.Region> | Region of interest. Default value: atl::NIL. | ||
![]()  | inStdDevX | float | <0.0f, INF> | 3.0f | Smoothing standard deviation (horizontal). Default value: 3.0f. | 
![]()  | inStdDevY | Atl.Optional<float> | <0.0f, INF> | Smoothing standard deviation (vertical, or Auto = horizontal). Default value: atl::NIL. | |
![]()  | inRidgeThreshold | float | <0.0f, INF> | 5.0f | Sufficient ridge strength; ridges of that strength will always be detected. Default value: 5.0f. | 
![]()  | inRidgeHysteresis | float | <0.0f, INF> | 4.0f | Value by which the ridge threshold is decreased for ridge points neighboring with sufficiently strong edges. Default value: 4.0f. | 
![]()  | inPolarity | Avl.Polarity | |||
![]()  | inMinBlobArea | int | <0, INF> | 1 | Minimal area of a ridge blob. Default value: 1. | 
![]()  | outRidgeRegion | Avl.Region | 


