From 53bbfe64ade13b1392082201eaf9de3b226f51a6 Mon Sep 17 00:00:00 2001 From: Alex Izvorski Date: Sat, 30 Apr 2016 03:18:47 -0700 Subject: [PATCH] Add imports --- skimage/color/__init__.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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',