You are here: Start » FIL.NET » FIS.ImageLocalMinima Method

FIS.ImageLocalMinima Method

Finds image locations characterized by locally minimal pixel values.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void ImageLocalMinima
(
	FilNet.Image inImage,
	NullableRef<FilNet.Region> inRoi,
	bool inConsiderLowlands,
	float? inMinValue,
	float? inMaxValue,
	float inMinDistance,
	FilNet.ImageLocalExtremaVerification? inMinimaVerification,
	NullableRef<List<FilNet.Extremum2D>> outLocalMinima,
	NullableRef<SafeList<FilNet.Region>> outMinimaRegions
)

Parameters

Name Type Range Default Description
inImageFilNet.ImageInput image.
inRoiFilNet.NullableRef<FilNet.Region>Range of pixels to be processed. Default value: ftl::NIL.
inConsiderLowlandsboolConsider multi-pixel minima (lowlands) or not.
inMinValuefloat?Minimal value of minimum to be considered. Default value: ftl::NIL.
inMaxValuefloat?Maximal value of minimum to be considered. Default value: ftl::NIL.
inMinDistancefloat<0.0f, INF>Minimal distance between two found minima.
inMinimaVerificationFilNet.ImageLocalExtremaVerification?Minima verification structure. Default value: ftl::NIL.
outLocalMinimaFilNet.NullableRef<System.Collections.Generic.List<FilNet.Extremum2D>>Found local minima. Can be null to skip this parameter calculation.
outMinimaRegionsFilNet.NullableRef<FilNet.SafeList<FilNet.Region>>Regions of local minima (plateaus and singletons). Can be null to skip this parameter calculation.

Function Overrides

See also