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