You are here: Start » FIL.NET » Invoke.ImageLocalMaxima
Finds image locations characterized by locally maximal pixel values.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void ImageLocalMaxima ( Fil.Image inImage, Optional<Fil.Region> inRoi, bool inConsiderPlateaus, Optional<float> inMinValue, Optional<float> inMaxValue, float inMinDistance, Optional<Fil.ImageLocalExtremaVerification> inMaximaVerification, Optional<List<Fil.Extremum2D>> outLocalMaxima, Optional<List<Fil.Region>> outMaximaRegions )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | Fil.Image | Input image. | ||
![]() | inRoi | Ftl.Optional<Fil.Region> | Range of pixels to be processed. Default value: ftl::NIL. | ||
![]() | inConsiderPlateaus | bool | Consider multi-pixel maxima (plateaus) or not. | ||
![]() | inMinValue | Ftl.Optional<float> | Minimal value of maximum to be considered. Default value: ftl::NIL. | ||
![]() | inMaxValue | Ftl.Optional<float> | Maximal value of maximum to be considered. Default value: ftl::NIL. | ||
![]() | inMinDistance | float | <0.0f, INF> | Minimal distance between two found maxima. | |
![]() | inMaximaVerification | Ftl.Optional<Fil.ImageLocalExtremaVerification> | Maxima verification structure. Default value: ftl::NIL. | ||
![]() | outLocalMaxima | Ftl.Optional<System.Collections.Generic.List<Fil.Extremum2D>> | Found local maxima. | ||
![]() | outMaximaRegions | Ftl.Optional<System.Collections.Generic.List<Fil.Region>> | Regions of local maxima (plateaus and singletons). |