Convert HSV to Standard RGB (sRGB)
Description
Takes a series of HSV coordinates and converts them to the sRGB color space.
Usage
colorlib.HSV_to_sRGB(h, s, v)
Arguments
-
h
nympy.ndarray
- Hue values.
-
s
numpy.ndarray
- Saturation.
-
v
numpy.ndarray
- Value (the value-dimension of HSV).
Return
list
: Returns a list of numpy.ndarray
s with the corresponding coordinates in the sRGB color space ([r, g, b]
). Same length as the inputs.