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

AVS.ImageLocalMinima Method

Finds image locations characterized by locally minimal pixel values.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

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

Parameters

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

Function Overrides

See also