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