ThresholdImage_Hysteresis
Thresholds an image with a hysteresis, i.e. with a lower threshold for neighboring pixels.
Syntax
C++
C#
Python
def ThresholdImage_Hysteresis( inImage: Image, outMonoImage: Image, /, *, inRoi: Region | None = None, inMinValue: float | None = 128.0, inMaxValue: float | None = None, inHysteresis: float = 16.0 ) -> None
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inImage | Image | Input image | ||
![]() |
inRoi | Region | None | None | Region of interest | |
![]() |
inMinValue | float | None | 128.0 | Minimum value of a pixel that is considered foreground (Auto = -INF) | |
![]() |
inMaxValue | float | None | None | Maximum value of a pixel that is considered foreground (Auto = +INF) | |
![]() |
inHysteresis | float | 0.0 - ![]() |
16.0 | Defines how much the threshold criteria are lowered for pixels neighboring with other foreground pixels |
![]() |
outMonoImage | Image |
Hardware Acceleration
This operation supports automatic parallelization for multicore and multiprocessor systems.



