00001 #ifndef IMAGE_PROC_EDGE_AWARE 00002 #define IMAGE_PROC_EDGE_AWARE 00003 00004 #include <opencv2/core/core.hpp> 00005 00006 // Edge-aware debayering algorithms, intended for eventual inclusion in OpenCV. 00007 00008 namespace image_proc { 00009 00010 void debayerEdgeAware(const cv::Mat& bayer, cv::Mat& color); 00011 00012 void debayerEdgeAwareWeighted(const cv::Mat& bayer, cv::Mat& color); 00013 00014 } // namespace image_proc 00015 00016 #endif