lab2xyz
skimage.color.lab2xyz(lab, illuminant='D65', observer='2') [source]
CIE-LAB to XYZcolor space conversion. Parameters:
lab : array_like The image in lab format, in a 3-D array of shape (.., .., 3). illuminant : {“A”, “D50”, “D55”, “D65”, “D75”, “E”}, optional The name of the illuminant (the function is NOT case sensitive). observer : {“2”, “10”}, optional The aperture angle of the observer. Returns:
out : ndarray The image in XYZ format, in a 3-D array of shape (.., .., 3).