Contains types and functions for applying various image transformations.
Type | Description |
Function or value | Description |
Full Usage:
getTsfCPU threads _arg1
Parameters:
int
-
The number of threads to use for parallel processing.
_arg1 : Transformation
Returns: Image -> Image
A function that can apply the specified transformation using CPU resources.
|
|
Full Usage:
getTsfGPU clContext localWorkSize _arg1
Parameters:
ClContext
-
The OpenCL context for GPU operations.
localWorkSize : int
-
The local work size for GPU parallelism.
_arg1 : Transformation
Returns: Image -> Image
A function that can apply the specified transformation using GPU resources.
|
|
Full Usage:
transformationsOnCPU transformationsList threads
Parameters:
Transformation list
-
The list of image transformations to apply sequentially.
threads : int
-
The number of threads to use for parallel processing.
Returns: Image -> Image
The transformed image.
|
|
Full Usage:
transformationsOnGPU transformationsList context localWorkSize
Parameters:
Transformation list
-
The list of image transformations to apply sequentially.
context : ClContext
-
The OpenCL context for GPU operations.
localWorkSize : int
-
The local work size for GPU parallelism.
Returns: Image -> Image
The transformed image.
|
|