-
Notifications
You must be signed in to change notification settings - Fork 0
/
singleimageform.cpp
391 lines (384 loc) · 10.2 KB
/
singleimageform.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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
#include "singleimageform.h"
#include "ui_singleimageform.h"
#include <QDebug>
#include "imagelabel.h"
SingleImageForm::SingleImageForm(QWidget *parent)
: QWidget(parent), ui(new Ui::SingleImageForm)
{
qDebug() << "singleimagform";
ui->setupUi(this);
initilize();
}
SingleImageForm::~SingleImageForm()
{
delete ui;
}
void SingleImageForm::initilize()
{
cout << "ini" << endl;
imageLabel = new ImageLabel(this);
imageLabel->imageRead("images/en.jpg");
//ui->formLayoutImage->addWidget(imageLabel);
ui->gridLayoutImage_2->addWidget(imageLabel, 0, 0, 1, 1);
opencv.LoadPicture();
displayMode = ImageMode;
}
void SingleImageForm::on_comboBox_1_currentIndexChanged(const QString &arg1)
{
ui->comboBox_2->clear();
if(arg1 == "image")
{
displayMode = ImageMode;
opencv.LoadPicture();
opencv.getImageInfo();
*imageLabel << opencv.getResult();
}
else if(arg1 == "morphology")
{
ui->comboBox_2->addItem("dilate");
ui->comboBox_2->addItem("erode");
ui->comboBox_2->addItem("open");
ui->comboBox_2->addItem("close");
ui->comboBox_2->addItem("top hat");
ui->comboBox_2->addItem("black hat");
}
else if(arg1 == "blur")
{
opencv.blurImage();
//return;
*imageLabel << opencv.getResult();
}
else if(arg1 == "gray")
{
opencv.getGrayImage();
//return;
*imageLabel << opencv.getResult();
}
else if(arg1 == "edge detection")
{
ui->comboBox_2->addItem("canny");
ui->comboBox_2->addItem("sobel");
ui->comboBox_2->addItem("laplacian");
ui->comboBox_2->addItem("scharr");
}
else if(arg1 == "capture")
{
displayMode = FrameMode;
opencv.openCapture();
for(int i = 0; i < 100; i++)
{
Mat image = opencv.getFrame();
*imageLabel << image;
waitKey(30);
}
opencv.closeCapture();
}
else if(arg1 == "create alpha mat")
{
opencv.createAlphaMat();
*imageLabel << opencv.getResult();
}
else if(arg1 == "add logo")
{
opencv.addLogo();
*imageLabel << opencv.getResult();
}
else if(arg1 == "color reduce")
{
opencv.colorReduce();
*imageLabel << opencv.getResult();
}
else if(arg1 == "split channels")
{
ui->comboBox_2->addItem("channel red");
ui->comboBox_2->addItem("channel green");
ui->comboBox_2->addItem("channel blue");
}
else if(arg1 == "contrast and bright")
{
opencv.contrastAndBright(1.5, -30);
*imageLabel << opencv.getResult();
}
else if(arg1 == "filter")
{
ui->comboBox_2->addItem("box filter");
ui->comboBox_2->addItem("blur");
ui->comboBox_2->addItem("gaussian blur");
ui->comboBox_2->addItem("median blur");
ui->comboBox_2->addItem("bilateral filter");
}
else if(arg1 == "flood fill")
{
opencv.floodFillImage();
*imageLabel << opencv.getResult();
}
else if(arg1 == "resize")
{
ui->comboBox_2->addItem("zoom in");
ui->comboBox_2->addItem("zoom out");
ui->comboBox_2->addItem("pyr up");
ui->comboBox_2->addItem("pyr down");
}
else if(arg1 == "threshold")
{
opencv.thresholdImage();
*imageLabel << opencv.getResult();
}
else if(arg1 == "translation")
{
ui->comboBox_2->addItem("hough lines");
ui->comboBox_2->addItem("hough circles");
ui->comboBox_2->addItem("channel blue");
}
else if(arg1 == "remap")
{
opencv.remapImage();
*imageLabel << opencv.getResult();
}
else if(arg1 == "affine transform")
{
opencv.affineTransformImage();
*imageLabel << opencv.getResult();
}
else if(arg1 == "equalize histogram")
{
opencv.equalizeHistImage();
*imageLabel << opencv.getResult();
}
else if(arg1 == "contours")
{
opencv.contoursImage();
*imageLabel << opencv.getResult();
}
else if(arg1 == "convex")
{
ui->comboBox_2->addItem("convex hull");
ui->comboBox_2->addItem("min area rect");
ui->comboBox_2->addItem("min enclosing circle");
ui->comboBox_2->addItem("moments");
}
else if(arg1 == "watershed")
{
opencv.watershedImage();
*imageLabel << opencv.getResult();
}
else if(arg1 == "histogram")
{
ui->comboBox_2->addItem("H-S 2D histogram");
ui->comboBox_2->addItem("1D-single channels histogram");
ui->comboBox_2->addItem("1D-3 channels histogram");
ui->comboBox_2->addItem("histogram compare");
}
else if(arg1 == "calcBackProject")
{
ui->comboBox_2->addItem("calcBackProject");
ui->comboBox_2->addItem("1D-single channels histogram");
ui->comboBox_2->addItem("1D-3 channels histogram");
ui->comboBox_2->addItem("histogram compare");
}
else if(arg1 == "match template")
{
ui->comboBox_2->addItem("match template");
ui->comboBox_2->addItem("1D-single channels histogram");
ui->comboBox_2->addItem("1D-3 channels histogram");
ui->comboBox_2->addItem("histogram compare");
}
}
void SingleImageForm::on_comboBox_1_currentTextChanged(const QString &arg1)
{
}
void SingleImageForm::on_comboBox_2_currentIndexChanged(const QString &arg1)
{
if(ui->comboBox_1->currentText() == "split channels")
{
if(arg1 == "channel red")
{
opencv.splitChannels(0);
}
else if(arg1 == "channel green")
{
opencv.splitChannels(1);
}
else if(arg1 == "channel blue")
{
opencv.splitChannels(2);
}
*imageLabel << opencv.getResult();
}
else if(ui->comboBox_1->currentText() == "filter")
{
if(arg1 == "box filter")
{
opencv.filter(BOX_FILTER);
}
else if(arg1 == "blur")
{
opencv.filter(BLUR);
}
else if(arg1 == "gaussian blur")
{
opencv.filter(GAUSSIAN_BLUR);
}
else if(arg1 == "median blur")
{
opencv.filter(MEDIAN_BLUR);
}
else if(arg1 == "bilateral filter")
{
opencv.filter(BILATERAL_FILTER);
}
*imageLabel << opencv.getResult();
}
else if(ui->comboBox_1->currentText() == "morphology")
{
if(arg1 == "dilate")
{
opencv.morphology(DILATE_OPERATION);
}
else if(arg1 == "erode")
{
opencv.morphology(ERODE_OPERATION);
}
else if(arg1 == "open")
{
opencv.morphology(OPEN_OPERATION);
}
else if(arg1 == "close")
{
opencv.morphology(CLOSE_OPERATION);
}
else if(arg1 == "top hat")
{
opencv.morphology(TOP_HAT_OPERATION);
}
else if(arg1 == "black hat")
{
opencv.morphology(BLACK_HAT_OPERATION);
}
*imageLabel << opencv.getResult();
}
else if(ui->comboBox_1->currentText() == "resize")
{
if(arg1 == "zoom in")
{
opencv.resizeImage(ZOOM_IN);
}
else if(arg1 == "zoom out")
{
opencv.resizeImage(ZOOM_OUT);
}
else if(arg1 == "pyr up")
{
opencv.resizeImage(PYR_UP);
}
else if(arg1 == "pyr down")
{
opencv.resizeImage(PYR_DOWN);
}
*imageLabel << opencv.getResult();
}
else if(ui->comboBox_1->currentText() == "edge detection")
{
if(arg1 == "canny")
{
opencv.cannyImage();
}
else if(arg1 == "sobel")
{
opencv.sobelImage();
}
else if(arg1 == "laplacian")
{
opencv.laplacianImage();
}
else if(arg1 == "scharr")
{
opencv.scharr();
}
*imageLabel << opencv.getResult();
}
else if(ui->comboBox_1->currentText() == "translation")
{
if(arg1 == "hough lines")
{
opencv.houghLinesImage();
}
else if(arg1 == "hough circles")
{
opencv.HoughCirclesImage();
}
else if(arg1 == "laplacian")
{
opencv.laplacianImage();
}
else if(arg1 == "scharr")
{
opencv.scharr();
}
*imageLabel << opencv.getResult();
}
else if(ui->comboBox_1->currentText() == "convex")
{
if(arg1 == "convex hull")
{
opencv.convexHullImage();
*imageLabel << opencv.getResult();
}
else if(arg1 == "min area rect")
{
opencv.minAreaRectImage();
}
else if(arg1 == "min enclosing circle")
{
opencv.minEnclosingCircleImage();
}
else if(arg1 == "moments")
{
opencv.momentImage();
}
*imageLabel << opencv.getResult();
}
else if(ui->comboBox_1->currentText() == "histogram")
{
if(arg1 == "H-S 2D histogram")
{
opencv.calcHS2DHistImage();
*imageLabel << opencv.getResult();
}
else if(arg1 == "1D-single channels histogram")
{
opencv.calc1DHistImage();
}
else if(arg1 == "1D-3 channels histogram")
{
opencv.calc1D3CHistImage();
}
else if(arg1 == "histogram compare")
{
opencv.histogramCompare();
}
*imageLabel << opencv.getResult();
}
else if(ui->comboBox_1->currentText() == "calcBackProject")
{
if(arg1 == "calcBackProject")
{
opencv.calcBackProjectImage();
*imageLabel << opencv.getResult();
}
else if(arg1 == "1D-single channels histogram")
{
opencv.calc1DHistImage();
}
*imageLabel << opencv.getResult();
}
else if(ui->comboBox_1->currentText() == "match template")
{
if(arg1 == "match template")
{
opencv.matchTemplateImage();
*imageLabel << opencv.getResult();
}
*imageLabel << opencv.getResult();
}
}