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

FIS.ImageLocalMaxima Method

Finds image locations characterized by locally maximal pixel values.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void ImageLocalMaxima
(
	FilNet.Image inImage,
	bool inConsiderPlateaus,
	float? inMinValue,
	float? inMaxValue,
	float inMinDistance,
	NullableRef<List<FilNet.Extremum2D>> outLocalMaxima,
	NullableRef<SafeList<FilNet.Region>> outMaximaRegions
)

Parameters

Name Type Range Default Description
inImageFilNet.ImageInput image.
inConsiderPlateausboolConsider multi-pixel maxima (plateaus) or not.
inMinValuefloat?Minimal value of maximum to be considered. Default value: ftl::NIL.
inMaxValuefloat?Maximal value of maximum to be considered. Default value: ftl::NIL.
inMinDistancefloat<0.0f, INF>Minimal distance between two found maxima.
outLocalMaximaFilNet.NullableRef<System.Collections.Generic.List<FilNet.Extremum2D>>Found local maxima. Can be null to skip this parameter calculation.
outMaximaRegionsFilNet.NullableRef<FilNet.SafeList<FilNet.Region>>Regions of local maxima (plateaus and singletons). Can be null to skip this parameter calculation.

Function Overrides

See also