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
Input value inRgbImage Image
Output value 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.