You are here: Start » AVL.NET » AVS.ImageLocalMaxima Method

AVS.ImageLocalMaxima Method

Finds image locations characterized by locally maximal pixel values.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

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

Parameters

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

Function Overrides

See also