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