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

Invoke.SurfaceLocalMaxima

Finds surface locations characterized by locally maximal heights.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void SurfaceLocalMaxima
(
	Fil.Surface inSurface,
	Optional<Fil.Region> inRoi,
	bool inConsiderPlateaus,
	Optional<float> inMinHeight,
	Optional<float> inMaxHeight,
	float inMinDistance,
	Optional<Fil.SurfaceLocalExtremaVerification> inMaximaVerification,
	Optional<List<Fil.SurfaceExtremum>> outLocalMaxima,
	Optional<List<Fil.Region>> outMaximaRegions
)

Parameters

Name Type Range Default Description
inSurfaceFil.Surface
inRoiFtl.Optional<Fil.Region>Range of pixels to be processed. Default value: ftl::NIL.
inConsiderPlateausboolConsider multi-pixel maxima (plateaus) or not.
inMinHeightFtl.Optional<float>Minimal height of maximum to be considered. Default value: ftl::NIL.
inMaxHeightFtl.Optional<float>Maximal height of maximum to be considered. Default value: ftl::NIL.
inMinDistancefloat<0.0f, INF>Minimal distance between two found maxima.
inMaximaVerificationFtl.Optional<Fil.SurfaceLocalExtremaVerification>Maxima verification structure. Default value: ftl::NIL.
outLocalMaximaFtl.Optional<System.Collections.Generic.List<Fil.SurfaceExtremum>>Found local maxima.
outMaximaRegionsFtl.Optional<System.Collections.Generic.List<Fil.Region>>Regions of local maxima (plateaus and singletons).

See also