skimage2.color.luv2rgb#

skimage2.color.luv2rgb(luv, *, channel_axis=-1)[source]#

Luv to RGB color space conversion.

Parameters:
luvarray_like of shape (…, C=3, …)

The image in CIE Luv format. By default, the final dimension denotes channels.

Returns:
outndarray of shape (…, C=3, …)

The image in RGB format. Same dimensions as input.

Raises:
ValueError

If luv is not at least 2-D with shape (…, C=3, …).

Notes

This function uses luv2xyz and xyz2rgb.