Convert HLC to Standard RGB (sRGB)
Description
All r/g/b values in [0., 1.]
, h in [0., 360.]
, l and s in [0., 1.]
.
Usage
colorlib.HLS_to_sRGB(h, l, s)
Arguments
-
h
numpy.ndarray
- Hue values.
-
l
numpy.ndarray
- Lightness.
-
s
numpy.ndarray
- Saturation.
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.