00001 #ifndef IMAGE_PROC_YUV422 00002 #define IMAGE_PROC_YUV422 00003 00004 #include <opencv2/core/core.hpp> 00005 00006 // YUV422 conversion, intended for eventual inclusion in OpenCV 00007 00008 namespace image_proc { 00009 00010 void yuv422ToGray(const cv::Mat& yuv, cv::Mat& gray); 00011 00012 void yuv422ToColor(const cv::Mat& yuv, cv::Mat& color); 00013 00014 } // namespace image_proc 00015 00016 #endif