forked from sun11/QTFaceRec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainwindow.h
49 lines (42 loc) · 960 Bytes
/
mainwindow.h
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
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include "posix_qextserialport.h"
#include <QMainWindow>
#include <QTimer>
#include <QTextStream>
#include <vector>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private:
int iImage;
char trainImageName[256];
Ui::MainWindow *ui;
Posix_QextSerialPort *myCom;
QTimer *readTimer;
QTimer *countTimer;
QString trainNum;
QTextStream out;
int num1; // the person number in training file
int num2;
private slots:
void toggleCaptureButton();
void toggleRecButton();
void appendTrainFile();
void abandonImage();
void sendButtonClicked();
void setThreshold(int thresholdFrom);
void readMyCom();
void saveFaceImage();
void login();
void reset();
void about();
void unloadTrainingdata();
};
#endif // MAINWINDOW_H