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

FIS.ProfileLocalExtrema Method

Finds the locations at which the values of the input profile are locally highest or lowest.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void ProfileLocalExtrema
(
	FilNet.Profile inProfile,
	FilNet.Range? inRange,
	bool inCyclic,
	FilNet.ExtremumType inExtremumType,
	FilNet.ProfileInterpolationMethod inInterpolationMethod,
	bool inConsiderPlateaus,
	float? inMinValue,
	float? inMaxValue,
	FilNet.LocalBlindness? inLocalBlindness,
	IList<FilNet.Extremum1D> outLocalExtrema
)

Parameters

Name Type Range Default Description
inProfileFilNet.ProfileInput profile.
inRangeFilNet.Range?
inCyclicboolIndicates whether the last element should be considered a neighbour of the first element.
inExtremumTypeFilNet.ExtremumTypeType of extremum to find.
inInterpolationMethodFilNet.ProfileInterpolationMethodQuadratic4When interpolation is set to Quadratic each non-plateau extremum is located using a parabola fit. Default value: Quadratic4.
inConsiderPlateausboolTrueIndicates whether the result should include centers of plateau extrema. Default value: True.
inMinValuefloat?Minimum value of an extremum. Default value: ftl::NIL.
inMaxValuefloat?Maximum value of an extremum. Default value: ftl::NIL.
inLocalBlindnessFilNet.LocalBlindness?Defines conditions in which weaker extrema can be detected in the vicinity of stronger ones. Default value: ftl::NIL.
outLocalExtremaSystem.Collections.Generic.IList<FilNet.Extremum1D>Extrema of the profile values.

Function Overrides

See also