-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainWindow.hpp
84 lines (62 loc) · 1.8 KB
/
MainWindow.hpp
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#ifndef MAINWINDOW_HPP
#define MAINWINDOW_HPP
#include <QMainWindow>
#include <QFileDialog>
#include <QPushButton>
#include <QBoxLayout>
#include <QSpinBox>
#include <QLabel>
#include <QGroupBox>
#include <QStatusBar>
#include <QCheckBox>
#include "QtOpencvCore.hpp"
#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
/* Konstruktor */
explicit MainWindow(QWidget *parent = 0);
/* Destruktor */
~MainWindow();
private slots:
/* Funktionen werden ausgeloest, wenn auf den entsprechenden Button geklickt wird */
void on_pbOpenImage_clicked();
void on_pbComputeSeams_clicked();
void on_pbRemoveSeams_clicked();
private:
/* UI Komponenten */
QWidget *centralWidget;
QHBoxLayout *horizontalLayout;
QHBoxLayout *horizontalLayout_2;
QHBoxLayout *horizontalLayout_3;
QVBoxLayout *verticalLayout;
QVBoxLayout *verticalLayout_3;
QPushButton *pbOpenImage;
QPushButton *pbRemoveSeams;
QPushButton *pbComputeSeams;
QLabel *lCaption;
QLabel *lCols;
QLabel *lRows;
QSpinBox *sbCols;
QSpinBox *sbRows;
QSpacerItem *verticalSpacer;
QSpacerItem *horizontalSpacer;
QCheckBox *cbMark;
/*****************************************/
/* Originalbild */
cv::Mat originalImage;
/* Eventuell weitere Klassenattribute */
cv::Mat gray;
cv::Mat energy;
cv::Mat carved;
std::vector<std::vector<int>> horizontal_seams{};
std::vector<std::vector<int>> vertical_seams{};
/* Methode initialisiert die UI */
void setupUi();
/* Methoden aktivieren bzw. deaktivieren die UI */
void enableGUI();
void disableGUI();
};
#endif // MAINWINDOW_HPP