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 L dimension (Luminance).
Cnumpy.ndarray
Values for the polar C dimension (Chroma).
Hnumpy.ndarray
Values for the polar H dimension (Hue).

Return

list: Returns corresponding CIELAB chromaticities as a list of numpy.ndarrays of the same length as the inputs ([L, U, V]).