Go to the documentation of this file.00001
00010 #ifndef __D_CV_GUI__
00011 #define __D_CV_GUI__
00012
00013 #include <vector>
00014 #include <opencv/cv.h>
00015
00016 namespace DUtilsCV
00017 {
00018
00019 class GUI
00020 {
00021 public:
00022
00028 static void showImage(const cv::Mat &image, bool autosize = true);
00029
00038 static bool showSystemImage(const cv::Mat &image,
00039 const std::string &tmp_file = "tmp.png",
00040 const std::string &app = "eog");
00041
00042 };
00043
00044 }
00045
00046 #endif