-
Notifications
You must be signed in to change notification settings - Fork 15
/
mainwindow.h
64 lines (52 loc) · 1.24 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include "detecter.h"
#include "binarytest.h"
#include <QImage>
#include <QMainWindow>
#include <QTime>
#include <QElapsedTimer>
#include <QTableWidgetItem>
#include <opencv2/core.hpp>
#include <opencv2/imgproc.hpp>
using namespace cv;
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow {
Q_OBJECT
public:
explicit MainWindow(QWidget* parent = 0);
~MainWindow();
private slots:
void on_qpbOpenFile_clicked();
void on_qpbUpdate_clicked();
void on_qcbAutoUpdate_clicked(bool checked);
void update();
void updateDefectsInfo(Mat& defectsInfo);
void showImages();
void getParameters();
void on_qtwDefectsInfo_cellClicked(int row, int column);
void on_qpbBinaryTest_clicked();
void recvBinaryTestWndClose();
private:
Ui::MainWindow* ui;
BinaryTest* binaryTestWnd;
Mat mInputImg;
QImage qInputImg;
QImage qDFTImg;
QImage qProcessedDFTImg;
QImage qProcessedImg;
QImage qInvBinaryImg;
Detecter defect;
Mat defectsInfo;
std::vector<int> defectIndex;
int avgFilterSize;
int R;
int r1;
int r2;
int binaryThreshold;
QElapsedTimer timer;
bool isImgLoad;
};
#endif // MAINWINDOW_H