Convert polarLAB to CIELAB
Description
Convert colors from the polar representation of the CIELAB color space into CIELAB coordinates. Inverse function of LAB_to_polarLAB.
Usage
colorlib.polarLAB_to_LAB(L, C, H)
Arguments
-
L
numpy.ndarray
-
Values for the polar
L
dimension. -
C
numpy.ndarray
-
Values for the polar
C
dimension. -
H
numpy.ndarray
-
Values for the polar
H
dimension.
Return
list
: Returns corresponding CIELAB chromaticities as a list of numpy.ndarray
s of the same length as the inputs ([L, A, B]
).