You are here: Start » FIL.NET » Function Reference » Image » Image Point Transforms » FIL.ResaturateImage
Sets pixels below the low value to minimum, above the high value to maximum, and interpolates the rest.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void ResaturateImage ( FilNet.Image inImage, float inLowValue, float inHighValue, FilNet.Image outImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | FilNet.Image | Input image. | ||
![]() | inLowValue | float | 64.0f | The value that will be changed to minimum (usually 0). Default value: 64.0f. | |
![]() | inHighValue | float | 192.0f | The value that will be changed to maximum (usually 255). Default value: 192.0f. | |
![]() | outImage | FilNet.Image | Output image. |
Hardware Acceleration
This operation is optimized for SSE2 technology for pixels of types: UINT8, SINT16.
This operation supports automatic parallelization for multicore and multiprocessor systems.
Hardware acceleration settings may be manipulated with Settings class.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Region exceeds an input image in ResaturateImage. |
DomainError | Not supported inImage pixel format in ResaturateImage. Supported formats: Int8, UInt8, Int16, UInt16, Int32. |