31 lines
468 B
C
31 lines
468 B
C
|
#ifndef _AIGOQT_H_
|
||
|
#define _AIGOQT_H_
|
||
|
|
||
|
#include <QMainWindow>
|
||
|
#include <ui_main.h>
|
||
|
#include <quickcam.h>
|
||
|
#include <QTimer>
|
||
|
|
||
|
class AigoQt : public QMainWindow, public Ui::AigoQt
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
AigoQt(QWidget *parent = NULL);
|
||
|
virtual ~AigoQt( void );
|
||
|
|
||
|
|
||
|
private slots:
|
||
|
void on_buttonSetCorners_clicked( void );
|
||
|
void on_slider_valueChanged(int value);
|
||
|
void updateImage();
|
||
|
|
||
|
private:
|
||
|
|
||
|
Quickcam *cam;
|
||
|
QTimer *timer;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif /* ifndef _AIGOQT_H_ */
|