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

Lnumpy.ndarray
Values for the polar L dimension.
Cnumpy.ndarray
Values for the polar C dimension.
Hnumpy.ndarray
Values for the polar H dimension.

Return

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