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
-
Lnumpy.ndarray -
Values for the polar
Ldimension (Luminance). -
Cnumpy.ndarray -
Values for the polar
Cdimension (Chroma). -
Hnumpy.ndarray -
Values for the polar
Hdimension (Hue).
Return
list: Returns corresponding CIELAB chromaticities as a list of numpy.ndarrays of the same length as the inputs ([L, U, V]).