You are here: Start » AVL.NET » Invoke.ImageRidges

Invoke.ImageRidges

Finds ridge pixels in an image.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void ImageRidges
(
	Avl.Image inImage,
	Optional<Avl.Region> inRoi,
	Avl.Polarity inPolarity,
	Optional<float> inMinValue,
	Optional<float> inMaxValue,
	float inNoiseLevel,
	Avl.Region outRidges
)

Parameters

Name Type Range Default Description
inImageAvl.ImageInput image.
inRoiAtl.Optional<Avl.Region>Range of pixels to be processed. Default value: atl::NIL.
inPolarityAvl.PolaritySpecifies the type of ridges to be detected (Bright, Dark or Any).
inMinValueAtl.Optional<float>Minimal value of pixel to be considered. Default value: atl::NIL.
inMaxValueAtl.Optional<float>Maximal value of pixel to be considered. Default value: atl::NIL.
inNoiseLevelfloat<0.0f, INF>Defines how much stronger a pixel has to be than its neighbors to be deemed a ridge pixel.
outRidgesAvl.RegionRegion of ridges.

See also