-
Notifications
You must be signed in to change notification settings - Fork 0
/
camerawindow.cpp
212 lines (174 loc) · 5.67 KB
/
camerawindow.cpp
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
#include "camerawindow.h"
#include "ui_camerawindow.h"
#include <QMessageBox>
#include <QDebug>
#include "saltandpepperdialog.h"
#include "Camera/saltandpeppercommand.h"
#include "logodialog.h"
#include "Camera/addlogocommand.h"
#include "histogramdialog.h"
#include "Camera/histogramcommand.h"
#include "morphdialog.h"
#include "Camera/morphcommand.h"
CameraWindow::CameraWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::CameraWindow)
{
ui->setupUi(this);
videoCapture = 0;
commandList = new IPCommandList();
imageTimer = new QTimer();
connect(imageTimer, SIGNAL(timeout()), this, SLOT(imageUpdate()));
}
CameraWindow::~CameraWindow()
{
if(videoCapture->isOpened())
videoCapture->release();
delete videoCapture;
if(imageTimer->isActive())
imageTimer->stop();
delete imageTimer;
delete commandList;
delete ui;
}
void CameraWindow::uiPlayMode(bool play)
{
ui->buttonPlay->setEnabled(play);
ui->spinCameraIndex->setEnabled(play);
ui->buttonPause->setEnabled(!play);
ui->comboBoxIPOperation->setEnabled(!play);
ui->buttonAddIPOperation->setEnabled(!play);
ui->listIPOperations->setEnabled(!play);
ui->buttonRemoveSelectedOperation->setEnabled(!play);
}
void CameraWindow::imageUpdate()
{
try
{
videoCapture->operator >>(inputImage);
inputImage.copyTo(outputImage);
}
catch(cv::Exception& e)
{
if(videoCapture != 0)
if(videoCapture->isOpened())
videoCapture->release();
this->uiPlayMode(true);
QMessageBox msgBox;
msgBox.setText("Camera error");
msgBox.exec();
return;
const char* err_msg = e.what();
std::cout << "exception caught: " << err_msg << std::endl;
}
cv::imshow("Camera Input", inputImage);
QTimer::singleShot(0, this, SLOT(processUpdate()));
}
void CameraWindow::processUpdate()
{
commandList->Execute(outputImage);
cv::imshow("Camera Output", outputImage);
}
void CameraWindow::on_buttonPlay_clicked()
{
if(videoCapture == 0)
videoCapture = new cv::VideoCapture();
if(videoCapture->isOpened())
videoCapture->release();
int cameraIndex = ui->spinCameraIndex->value();
try
{
if(videoCapture->open(cameraIndex))
{
this->uiPlayMode(false);
cv::namedWindow("Camera Input", CV_WINDOW_NORMAL);
cv::namedWindow("Camera Output", CV_WINDOW_KEEPRATIO);
imageTimer->start(100);
}
else
{
this->uiPlayMode(true);
QMessageBox msgBox;
msgBox.setText("Camera with given index can't be opened");
msgBox.exec();
return;
}
}
catch(cv::Exception& e)
{
const char* err_msg = e.what();
std::cout << "exception caught: " << err_msg << std::endl;
}
}
void CameraWindow::on_buttonPause_clicked()
{
if(imageTimer->isActive())
imageTimer->stop();
if(videoCapture != 0)
if(videoCapture->isOpened())
videoCapture->release();
this->uiPlayMode(true);
}
void CameraWindow::on_buttonAddIPOperation_clicked()
{
QString IPOperation = ui->comboBoxIPOperation->currentText();
if(IPOperation == "Add Salt and Pepper Noise")
{
SaltAndPepperDialog sapDiag;
if(sapDiag.exec())
{
SaltAndPepperCommand *sapCommand = new SaltAndPepperCommand(sapDiag.addSalt, sapDiag.addPepper, sapDiag.rate);
commandList->AddCommand(sapCommand);
ui->listIPOperations->addItem("Salt and Pepper Noise");
}
}
else if(IPOperation == "Add Logo")
{
LogoDialog logoDialog;
if(logoDialog.exec())
{
AddLogoCommand *logoCommand = new AddLogoCommand(logoDialog.imageLogo, logoDialog.logoX,
logoDialog.logoY, logoDialog.logoAlpha,
logoDialog.logoBeta, logoDialog.logoGamma);
commandList->AddCommand(logoCommand);
ui->listIPOperations->addItem("Show Logo");
}
}
else if(IPOperation == "Add Histogram Operation")
{
HistogramDialog hisDialog;
if(hisDialog.exec())
{
HistogramCommand *histogramCommand = new HistogramCommand(hisDialog.calculateHistogram, hisDialog.histogramChannel, hisDialog.equalizeHistogram);
commandList->AddCommand(histogramCommand);
ui->listIPOperations->addItem("Histogram Operation");
}
}
else if(IPOperation == "Add Morphological Operation")
{
MorphDialog morphDialog;
if(morphDialog.exec())
{
// int _morphOperation;
// int _kernelType;
// int _imagePaddingMethod;
// int _iterationCount;
// cv::Size *_kernelSize;
// cv::Point *_anchorPoint;
MorphCommand *morphCommand = new MorphCommand(morphDialog.morphOperation, morphDialog.kernelType,
morphDialog.imagePaddingMethod, morphDialog.iterationCount,
morphDialog.kernelSize, morphDialog.anchorPoint);
commandList->AddCommand(morphCommand);
ui->listIPOperations->addItem("Morphological Operation");
}
}
}
void CameraWindow::on_buttonRemoveSelectedOperation_clicked()
{
int index = ui->listIPOperations->currentRow();
if(index < 0)
return;
QListWidgetItem* item = ui->listIPOperations->takeItem(index);
ui->listIPOperations->removeItemWidget(item);
commandList->RemoveCommand(index);
}