Subversion Repositories seema-scanner

Rev

Rev 99 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 jakw 1
#ifndef SMVideoWidget_H
2
#define SMVideoWidget_H
3
 
4
#include <QLabel>
5
 
6
#include <opencv2/opencv.hpp>
7
 
8
class SMVideoWidget : public QLabel{
9
 
10
    Q_OBJECT
11
    public:
12
        explicit SMVideoWidget(QWidget *parent = 0);
13
    public slots:
14
        void showImageCV(cv::Mat image);
15
};
16
 
17
#endif // SMVideoWidget_H