lab2rgb
-
skimage.color.lab2rgb(lab)
[source] -
Lab to RGB color space conversion.
Parameters: lab : array_like
The image in Lab format, in a 3-D array of shape
(.., .., 3)
.Returns: out : ndarray
The image in RGB format, in a 3-D array of shape
(.., .., 3)
.Raises: ValueError
If
lab
is not a 3-D array of shape(.., .., 3)
.Notes
This function uses lab2xyz and xyz2rgb.
Please login to continue.