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
Input value inImage Image Input image
Input value inRoi Region | None None Range of pixels to be processed
Input value inPolarity Polarity Polarity.Bright Specifies the type of ridges to be detected (Bright, Dark or Any)
Input value inMinValue float | None None Minimal value of pixel to be considered
Input value inMaxValue float | None None Maximal value of pixel to be considered
Input value inNoiseLevel float 0.0 - 0 Defines how much stronger a pixel has to be than its neighbors to be deemed a ridge pixel
Output value outRidges Region Region of ridges

Hardware Acceleration

This operation supports automatic parallelization for multicore and multiprocessor systems.