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