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

Lnumpy.ndarray
Values for the L dimension.
Anumpy.ndarray
Values for the A dimension.
Bnumpy.ndarray
Values for the B dimension.

Return

list: Returns corresponding polar LAB chromaticities as a list of numpy.ndarrays of the same length as the inputs ([L, A, B]).