diff --git a/skimage/color/__init__.py b/skimage/color/__init__.py index d68332f4..80d8a03a 100644 --- a/skimage/color/__init__.py +++ b/skimage/color/__init__.py @@ -22,6 +22,14 @@ from .colorconv import (convert_colorspace, hed2rgb, lab2lch, lch2lab, + rgb2yuv, + yuv2rgb, + rgb2yiq, + yiq2rgb, + rgb2ypbpr, + ypbpr2rgb, + rgb2ycbcr, + ycbcr2rgb, separate_stains, combine_stains, rgb_from_hed, @@ -75,6 +83,14 @@ __all__ = ['convert_colorspace', 'hed2rgb', 'lab2lch', 'lch2lab', + 'rgb2yuv', + 'yuv2rgb', + 'rgb2yiq', + 'yiq2rgb', + 'rgb2ypbpr', + 'ypbpr2rgb', + 'rgb2ycbcr', + 'ycbcr2rgb', 'separate_stains', 'combine_stains', 'rgb_from_hed',