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
-
hnympy.ndarray - Hue values.
-
snumpy.ndarray - Saturation.
-
vnumpy.ndarray - Value (the value-dimension of HSV).
Return
list: Returns a list of numpy.ndarrays with the corresponding coordinates in the sRGB color space ([r, g, b]). Same length as the inputs.