-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathSLVideoDialog.h
More file actions
36 lines (29 loc) · 758 Bytes
/
SLVideoDialog.h
File metadata and controls
36 lines (29 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
*
SLStudio - Platform for Real-Time Structured Light
(c) 2013 -- 2014 Jakob Wilm, DTU, Kgs.Lyngby, Denmark
*
*/
#ifndef SLVideoDialog_H
#define SLVideoDialog_H
#include <QDialog>
#include <opencv2/opencv.hpp>
namespace Ui {
class SLVideoDialog;
}
class SLVideoDialog : public QDialog{
Q_OBJECT
public:
explicit SLVideoDialog(const QString &title, QWidget *parent = 0);
~SLVideoDialog();
QAction* toggleViewAction();
void showEvent(QShowEvent *);
void closeEvent(QCloseEvent *);
public slots:
void showImageCV(cv::Mat image);
void showImageSeqCV(std::vector<cv::Mat> imageSeq);
private:
Ui::SLVideoDialog *ui;
QAction *action;
};
#endif // SLVideoDialog_H