Convert Polar CIELUV (HCL) to CIELUV
Description
Convert colors from the polar representation of the CIELUV color space, also known as HCL (Hue-Chroma-Luminance) color space, into CIELAB coordinates. Inverse function of LUV_to_polarLUV.
Usage
colorlib.polarLUV_to_LUV(L, C, H)
Arguments
-
L
numpy.ndarray
-
Values for the polar
L
dimension (Luminance). -
C
numpy.ndarray
-
Values for the polar
C
dimension (Chroma). -
H
numpy.ndarray
-
Values for the polar
H
dimension (Hue).
Return
list
: Returns corresponding CIELAB chromaticities as a list of numpy.ndarray
s of the same length as the inputs ([L, U, V]
).