#ifndef IMAGEVIEWER_H #define IMAGEVIEWER_H #include #include class QLabel; class QVBoxLayout; class QPushButton; class ImageViewer : public QWidget { public: ImageViewer(); private: cv::Mat img; QLabel *imageLabel; QVBoxLayout *mainLayout; QPushButton *quitButton; }; #endif