You are here: Start » FIL.NET » Invoke.ProfileLocalExtrema

Invoke.ProfileLocalExtrema

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

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void ProfileLocalExtrema
(
	Fil.Profile inProfile,
	Optional<Fil.Range> inRange,
	bool inCyclic,
	Fil.ExtremumType inExtremumType,
	Fil.ProfileInterpolationMethod inInterpolationMethod,
	bool inConsiderPlateaus,
	Optional<float> inMinValue,
	Optional<float> inMaxValue,
	Optional<Fil.LocalBlindness> inLocalBlindness,
	List<Fil.Extremum1D> outLocalExtrema
)

Parameters

Name Type Range Default Description
inProfileFil.ProfileInput profile.
inRangeFtl.Optional<Fil.Range>
inCyclicboolIndicates whether the last element should be considered a neighbour of the first element.
inExtremumTypeFil.ExtremumTypeType of extremum to find.
inInterpolationMethodFil.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.
inMinValueFtl.Optional<float>Minimum value of an extremum. Default value: ftl::NIL.
inMaxValueFtl.Optional<float>Maximum value of an extremum. Default value: ftl::NIL.
inLocalBlindnessFtl.Optional<Fil.LocalBlindness>Defines conditions in which weaker extrema can be detected in the vicinity of stronger ones. Default value: ftl::NIL.
outLocalExtremaSystem.Collections.Generic.List<Fil.Extremum1D>Extrema of the profile values.

See also