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

Invoke.ImageRidges

Finds ridge pixels in an image.

Namespace:Fil
Assembly:FilNet.dll

Syntax

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

Parameters

Name Type Range Default Description
inImageFil.ImageInput image.
inRoiFtl.Optional<Fil.Region>Range of pixels to be processed. Default value: ftl::NIL.
inPolarityFil.PolaritySpecifies the type of ridges to be detected (Bright, Dark or Any).
inMinValueFtl.Optional<float>Minimal value of pixel to be considered. Default value: ftl::NIL.
inMaxValueFtl.Optional<float>Maximal value of pixel to be considered. Default value: ftl::NIL.
inNoiseLevelfloat<0.0f, INF>Defines how much stronger a pixel has to be than its neighbors to be deemed a ridge pixel.
outRidgesFil.RegionRegion of ridges.

See also