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,
	NullableRef<FilNet.Region> inRoi,
	bool inConsiderPlateaus,
	float? inMinValue,
	float? inMaxValue,
	float inMinDistance,
	FilNet.ImageLocalExtremaVerification? inMaximaVerification,
	NullableRef<List<FilNet.Extremum2D>> outLocalMaxima,
	NullableRef<SafeList<FilNet.Region>> outMaximaRegions
)

Parameters

Name Type Range Default Description
inImageFilNet.ImageInput image.
inRoiFilNet.NullableRef<FilNet.Region>Range of pixels to be processed. Default value: ftl::NIL.
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.
inMaximaVerificationFilNet.ImageLocalExtremaVerification?Maxima verification structure. Default value: ftl::NIL.
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