rgbcie2rgb
-
skimage.color.rgbcie2rgb(rgbcie)
[source] -
RGB CIE to RGB color space conversion.
Parameters: rgbcie : array_like
The image in RGB CIE 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
rgbcie
is not a 3-D array of shape(.., .., 3)
.References
[R54] http://en.wikipedia.org/wiki/CIE_1931_color_space Examples
12345>>>
from
skimage
import
data
>>>
from
skimage.color
import
rgb2rgbcie, rgbcie2rgb
>>> img
=
data.astronaut()
>>> img_rgbcie
=
rgb2rgbcie(img)
>>> img_rgb
=
rgbcie2rgb(img_rgbcie)
Please login to continue.