RgbToHsv
Converts color space from Red-Green-Blue to Hue-Saturation-Value.
Applications:Color analysis is easier in the HSV color space than in RGB.
Syntax
C++
Python
def RgbToHsv( inRgbImage: Image, outHsvImage: Image, / ) -> None
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inRgbImage | Image | ||
![]() |
outHsvImage | Image |
Hardware Acceleration
This operation is optimized for AVX2 technology for pixels of type: UINT8.
This operation is optimized for SSE4 technology for pixels of type: UINT8.
This operation is optimized for NEON technology for pixels of type: UINT8.
This operation supports automatic parallelization for multicore and multiprocessor systems.
This operation supports processing on OpenCL compatible device.


