ImageRidges
Finds ridge pixels in an image.
Syntax
C++
C#
Python
def ImageRidges( inImage: Image, outRidges: Region, /, *, inRoi: Region | None = None, inPolarity: Polarity = Polarity.Bright, inMinValue: float | None = None, inMaxValue: float | None = None, inNoiseLevel: float = 0 ) -> None
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inImage | Image | Input image | ||
![]() |
inRoi | Region | None | None | Range of pixels to be processed | |
![]() |
inPolarity | Polarity | Polarity.Bright | Specifies the type of ridges to be detected (Bright, Dark or Any) | |
![]() |
inMinValue | float | None | None | Minimal value of pixel to be considered | |
![]() |
inMaxValue | float | None | None | Maximal value of pixel to be considered | |
![]() |
inNoiseLevel | float | 0.0 - ![]() |
0 | Defines how much stronger a pixel has to be than its neighbors to be deemed a ridge pixel |
![]() |
outRidges | Region | Region of ridges |
Hardware Acceleration
This operation supports automatic parallelization for multicore and multiprocessor systems.



