You are here: Start » AVL.NET » Invoke.ThresholdToRegion_Relative_DarkBright
Thresholds an image using two relative thresholds and produces two regions (Dark and Bright) in a single image pass.
Namespace: | Avl |
---|---|
Assembly: | AvlNet.dll |
Syntax
C++
C#
public static void ThresholdToRegion_Relative_DarkBright ( Avl.Image inImage, Optional<Avl.Region> inRoi, Avl.Image inBaseImage, float inDarkThreshold, float inBrightThreshold, float inHysteresis, Avl.Region outDarkRegion, Avl.Region outBrightRegion )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | Avl.Image | Input image. | ||
![]() | inRoi | Atl.Optional<Avl.Region> | Region of interest. Default value: atl::NIL. | ||
![]() | inBaseImage | Avl.Image | Pixels of this image are subtracted from inImage before thresholding. | ||
![]() | inDarkThreshold | float | 64.0f | Maximum relative value of a pixel that is considered DarkRegion. Default value: 64.0f. | |
![]() | inBrightThreshold | float | 192.0f | Minimum relative value of a pixel that is considered BrightRegion. Default value: 192.0f. | |
![]() | inHysteresis | float | <0.0f, INF> | 0.0f | Defines how much the threshold criteria are lowered for pixels neighboring with other foreground pixels. Default value: 0.0f. |
![]() | outDarkRegion | Avl.Region | Region of pixels equal or lower than inDarkThreshold. | ||
![]() | outBrightRegion | Avl.Region | Region of pixels equal or greater than inBrightThreshold. |