lab2rgb

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.

doc_scikit_image
2017-01-12 17:21:42
Comments
Leave a Comment

Please login to continue.