You are here: Start » FIL.NET » Invoke.ClassifyRegions
Splits an array of regions according to the selected feature and range.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void ClassifyRegions ( List<Fil.Region> inRegions, Fil.RegionFeature inFeature, Optional<float> inMinimum, Optional<float> inMaximum, Optional<List<Fil.Region>> outAccepted, Optional<List<Fil.Region>> outRejected, Optional<List<Fil.Region>> outBelow, Optional<List<Fil.Region>> outAbove, Optional<List<float>> outValues )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inRegions | System.Collections.Generic.List<Fil.Region> | Input regions. | ||
![]() | inFeature | Fil.RegionFeature | Region feature value to be computed. | ||
![]() | inMinimum | Ftl.Optional<float> | Lowest value of the range. Default value: ftl::NIL. | ||
![]() | inMaximum | Ftl.Optional<float> | Highest value of the range. Default value: ftl::NIL. | ||
![]() | outAccepted | Ftl.Optional<System.Collections.Generic.List<Fil.Region>> | Regions with feature values matching the range. | ||
![]() | outRejected | Ftl.Optional<System.Collections.Generic.List<Fil.Region>> | Regions with feature values outside the range. | ||
![]() | outBelow | Ftl.Optional<System.Collections.Generic.List<Fil.Region>> | Regions with feature values lower than inMinimum. | ||
![]() | outAbove | Ftl.Optional<System.Collections.Generic.List<Fil.Region>> | Regions with feature values higher than inMaximum. | ||
![]() | outValues | Ftl.Optional<System.Collections.Generic.List<float>> | Computed feature values. |