Rev 28 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#ifndef SMVideoWidget_H
#define SMVideoWidget_H
#include <QLabel>
#include <opencv2/opencv.hpp>
class SMVideoWidget : public QLabel{
Q_OBJECT
public:
explicit SMVideoWidget(QWidget *parent = 0);
public slots:
void showImageCV(cv::Mat image);
};
#endif // SMVideoWidget_H