You are here: Start » AVL.NET » Function Reference » Histogram » Histogram Features » AVL.HistogramLocalExtrema

AVL.HistogramLocalExtrema

Computes the histogram local extrema.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void HistogramLocalExtrema
(
	AvlNet.Histogram inHistogram,
	AvlNet.Range? inRange,
	double? inMinValue,
	double? inMaxValue,
	bool inCyclic,
	bool inConsiderPlateaus,
	AvlNet.ExtremumType inExtremumType,
	AvlNet.HistogramInterpolationMethod inInterpolationMethod,
	AvlNet.LocalBlindness? inLocalBlindness,
	IList<AvlNet.HistogramExtremum> outLocalExtrema
)

Parameters

Name Type Range Default Description
inHistogramAvlNet.HistogramInput histogram.
inRangeAvlNet.Range?Search range. Default value: atl::NIL.
inMinValuedouble?Minimum value of an extremum. Default value: atl::NIL.
inMaxValuedouble?Maximum value of an extremum. Default value: atl::NIL.
inCyclicboolFalseWhether to check differences between the first and last elements. Default value: False.
inConsiderPlateausboolIndicates whether the result should include centers of plateau extrema.
inExtremumTypeAvlNet.ExtremumTypeType of extremum to find.
inInterpolationMethodAvlNet.HistogramInterpolationMethodLinearHistogram bins interpolation method. Default value: Linear.
inLocalBlindnessAvlNet.LocalBlindness?Defines conditions in which weaker extrema can be detected in the vicinity of stronger ones. Default value: atl::NIL.
outLocalExtremaSystem.Collections.Generic.IList<AvlNet.HistogramExtremum>Output histogram extrema.

Function Overrides

See also