-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDCVCameraHandler.cpp
More file actions
511 lines (393 loc) · 14.8 KB
/
DCVCameraHandler.cpp
File metadata and controls
511 lines (393 loc) · 14.8 KB
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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
/*
* DCVCameraHandler.cpp
*
* Created on: Oct 12, 2015
* Author: Tim
*/
/******************************************************************************
****************************** I N C L U D E *******************************
*****************************************************************************/
#include "DCVCameraHandler.h"
#include <QCameraInfo>
#include <QList>
#include <QString>
#include <QMessageBox>
/*****************************************************************************
*** class DCVCameraHandler
*****************************************************************************/
/*****************************************************************************
*
*** DCVCameraHandler::DCVCameraHandler
*
*****************************************************************************/
DCVCameraHandler::DCVCameraHandler(QWidget* pParent) :
QObject(pParent),
m_pParentWidget(pParent),
m_CameraResolution(320, 240),
m_bRunning(false),
m_pActionStart(nullptr),
m_pActionStop(nullptr),
m_bMirrorHorizontal(false),
m_bMirrorVertical(false),
m_pActionMirrorHorizontal(nullptr),
m_pActionMirrorVertical(nullptr)
{
m_CaptureTimer.setInterval(100);
return;
} // end of DCVCameraHandler::DCVCameraHandler
/*****************************************************************************
*
*** DCVCameraHandler::DCVCameraHandler
*
*****************************************************************************/
DCVCameraHandler::DCVCameraHandler(QWidget* pParent, QSize CameraResolution) :
QObject(pParent),
m_pParentWidget(pParent),
m_CameraResolution(CameraResolution),
m_bRunning(false),
m_pActionStart(nullptr),
m_pActionStop(nullptr),
m_bMirrorHorizontal(false),
m_bMirrorVertical(false),
m_pActionMirrorHorizontal(nullptr),
m_pActionMirrorVertical(nullptr)
{
m_CaptureTimer.setInterval(100);
// When the timer times out, capture an image
connect(&m_CaptureTimer, SIGNAL(timeout()), this, SLOT(CaptureImage()));
return;
} // end of DCVCameraHandler::DCVCameraHandler
/*****************************************************************************
*
*** DCVCameraHandler::CreateStartAction
*
*****************************************************************************/
void DCVCameraHandler::CreateStartAction()
{
m_pActionStart = new QAction(QIcon(":/images/camera_start.png"),
tr("Start Camera"), this);
m_pActionStart->setStatusTip(tr("Start the Camera"));
connect(m_pActionStart, SIGNAL(triggered()), this,
SLOT(StartCamera()));
return;
} // end of method DCVCameraHandler::CreateStartAction
/*****************************************************************************
*
*** DCVCameraHandler::CreateStopAction
*
*****************************************************************************/
void DCVCameraHandler::CreateStopAction()
{
m_pActionStop = new QAction(QIcon(":/images/camera_stop.png"),
tr("Stop Camera"), this);
m_pActionStop->setStatusTip(tr("Stop the Camera"));
connect(m_pActionStop, SIGNAL(triggered()), this, SLOT(StopCamera()));
return;
} // end of method DCVCameraHandler::CreateStopAction
/*****************************************************************************
*
*** DCVCameraHandler::CreateMirrorHorizontalAction
*
*****************************************************************************/
void DCVCameraHandler::CreateMirrorHorizontalAction()
{
m_pActionMirrorHorizontal = new QAction(tr("Mirror Horizontal"), this);
m_pActionMirrorHorizontal->setStatusTip(tr("Mirror the Captured Image Horizontally"));
connect(m_pActionMirrorHorizontal, SIGNAL(triggered()), this, SLOT(MirrorHorizontal()));
return;
} // end of method DCVCameraHandler::CreateMirrorHorizontalAction
/*****************************************************************************
*
*** DCVCameraHandler::CreateMirrorVerticalAction
*
*****************************************************************************/
void DCVCameraHandler::CreateMirrorVerticalAction()
{
m_pActionMirrorVertical = new QAction(tr("Mirror Vertical"), this);
m_pActionMirrorVertical->setStatusTip(tr("Mirror the Captured Image Vertically"));
connect(m_pActionMirrorVertical, SIGNAL(triggered()), this, SLOT(MirrorVertical()));
return;
} // end of method DCVCameraHandler::CreateMirrorVerticalAction
/*****************************************************************************
*
*** DCVCameraHandler::AddCameraMenu
*
* Add a full "standard" camera menu to the passed QMenuBar. Adds the top
* level "Camera" menu, Camera Control Buttons, and Camera Selections.
*
*****************************************************************************/
void DCVCameraHandler::AddCameraMenu(QMenuBar* pMenuBar)
{
QMenu* pCameraMenu = pMenuBar->addMenu(tr("&Camera"));
AddCameraButtons(pCameraMenu);
pCameraMenu->addSeparator();
AddCameraMenuMirrorItems(pCameraMenu);
pCameraMenu->addSeparator();
AddCamerasMenuItems(pCameraMenu);
return;
} // end of method DCVCameraHandler::AddCameraMenu
/*****************************************************************************
*
*** DCVCameraHandler::AddCamerasMenuItems
*
* Add all available camera devices to the Camera menu. Select the first one
* as the default.
*
*****************************************************************************/
void DCVCameraHandler::AddCamerasMenuItems(QMenu* pMenu)
{
QList<QCameraInfo> Cameras = QCameraInfo::availableCameras();
QActionGroup* pVideoDevicesGroup = new QActionGroup(this);
pVideoDevicesGroup->setExclusive(true);
bool bFirst = true;
int nCamera = 0;
foreach (const QCameraInfo& Camera, Cameras)
{
QString strDescription = Camera.description();
QAction* pVideoDeviceAction =
new QAction(strDescription, pVideoDevicesGroup);
pVideoDeviceAction->setCheckable(true);
pVideoDeviceAction->setData(QVariant(nCamera));
if (bFirst)
{
// Grab the first available camera device as default
pVideoDeviceAction->setChecked(true);
bFirst = false;
} // end if
pMenu->addAction(pVideoDeviceAction);
nCamera++;
} // end foreach
connect(pVideoDevicesGroup, SIGNAL(triggered(QAction*)),
SLOT(UpdateCameraDevice(QAction*)));
SetCamera(0);
return;
} // end of method DCVCameraHandler::SetupCamerasMenuItems
/*****************************************************************************
*
*** DCVCameraHandler::AddCameraButtons
*
* Add the Camera Control Buttons to the specified menu
*
*****************************************************************************/
void DCVCameraHandler::AddCameraButtons(QMenu* pMenu)
{
if (m_pActionStart == nullptr)
{
CreateStartAction();
} // end if
m_pActionStart->setEnabled(false);
pMenu->addAction(m_pActionStart);
if (m_pActionStop == nullptr)
{
CreateStopAction();
} // end if
m_pActionStop->setEnabled(false);
pMenu->addAction(m_pActionStop);
return;
} // end of method DCVCameraHandler::AddCameraButtons
/*****************************************************************************
*
*** DCVCameraHandler::AddCameraMenuMirrorItems
*
* Add the Camera Control MenuMirrorItems to the specified menu
*
*****************************************************************************/
void DCVCameraHandler::AddCameraMenuMirrorItems(QMenu* pMenu)
{
if (m_pActionMirrorHorizontal == nullptr)
{
CreateMirrorHorizontalAction();
} // end if
m_pActionMirrorHorizontal->setCheckable(true);
m_pActionMirrorHorizontal->setChecked(m_bMirrorHorizontal);
pMenu->addAction(m_pActionMirrorHorizontal);
if (m_pActionMirrorVertical == nullptr)
{
CreateMirrorVerticalAction();
} // end if
m_pActionMirrorVertical->setCheckable(true);
m_pActionMirrorVertical->setChecked(m_bMirrorVertical);
pMenu->addAction(m_pActionMirrorVertical);
return;
} // end of method DCVCameraHandler::AddCameraMenuMirrorItems
/*****************************************************************************
*
*** DCVCameraHandler::AddCameraButtons
*
* Add the Camera Control Buttons to the specified toolbar
*
*****************************************************************************/
void DCVCameraHandler::AddCameraButtons(QToolBar* pToolBar)
{
if (m_pActionStart == nullptr)
{
CreateStartAction();
} // end if
m_pActionStart->setEnabled(false);
pToolBar->addAction(m_pActionStart);
if (m_pActionStop == nullptr)
{
CreateStopAction();
} // end if
m_pActionStop->setEnabled(false);
pToolBar->addAction(m_pActionStop);
return;
} // end of method DCVCameraHandler::AddCameraButtons
/*****************************************************************************
*
*** DCVCameraHandler::SetCamera
*
*****************************************************************************/
void DCVCameraHandler::SetCamera(int nCamera)
{
StopCamera();
m_ImageCapture.release();
m_ImageCapture.open(nCamera);
if (m_ImageCapture.isOpened())
{
SetResolution(m_CameraResolution);
StartCamera();
} // end if
else
{
QMessageBox::warning(m_pParentWidget, tr("Camera Handler"), tr("Failed to open camera"));
} // end else
return;
} // end of method DCVCameraHandler::SetCamera
/******************************************************************************
*
*** DCVCameraHandler::SetResolution
*
******************************************************************************/
bool DCVCameraHandler::SetResolution(int nWidth, int nHeight)
{
QSize Resolution(nWidth, nHeight);
return (SetResolution(Resolution));
} // end of method DCVCameraHandler::SetResolution
/******************************************************************************
*
*** DCVCameraHandler::SetResolution
*
* Set the Camera Resolution. Do a check to make sure it happened. Save the
* Actual Resolution and return a success indication.
*
******************************************************************************/
bool DCVCameraHandler::SetResolution(QSize Resolution)
{
m_ImageCapture.set(CV_CAP_PROP_FRAME_WIDTH, Resolution.width());
m_ImageCapture.set(CV_CAP_PROP_FRAME_HEIGHT, Resolution.height());
QSize Actual = GetActualResolution();
m_CameraResolution = Actual;
bool bRet = (Actual == Resolution);
if (!bRet)
{
QString strMsg(tr("Failed to Set Resolution"));
QMessageBox::warning(m_pParentWidget, tr("DCVCameraHandler"), strMsg);
} // end if
return (bRet);
} // end of method DCVCameraHandler::SetResolution
/******************************************************************************
*
*** DCVCameraHandler::GetActualResolution()
*
* Query the underlying VideoCapture for the actual resolution since what was
* attempted to be set might not have been supported.
*
******************************************************************************/
QSize DCVCameraHandler::GetActualResolution()
{
int nWidth = static_cast<int>(m_ImageCapture.get(CV_CAP_PROP_FRAME_WIDTH));
int nHeight = static_cast<int>(m_ImageCapture.get(CV_CAP_PROP_FRAME_HEIGHT));
return (QSize(nWidth, nHeight));
} // end of method DCVCameraHandler::GetActualResolution
/*****************************************************************************
*
*** DCVCameraHandler::UpdateCameraDevice
*
* Handle a new camera being selected from the menu.
*
*****************************************************************************/
void DCVCameraHandler::UpdateCameraDevice(QAction* pAction)
{
SetCamera(pAction->data().toInt());
return;
} // end of method DCVCameraHandler::UpdateCameraDevice
/*****************************************************************************
*
*** DCVCameraHandler::StartCamera
*
*****************************************************************************/
void DCVCameraHandler::StartCamera()
{
m_pActionStart->setDisabled(true);
m_CaptureTimer.start();
m_pActionStop->setEnabled(true);
m_bRunning = true;
emit CameraStarted();
return;
} // end of method DCVCameraHandler::StartCamera
/*****************************************************************************
*
*** DCVCameraHandler::StopCamera
*
*****************************************************************************/
void DCVCameraHandler::StopCamera()
{
m_pActionStop->setDisabled(true);
m_CaptureTimer.stop();
m_pActionStart->setEnabled(true);
m_bRunning = false;
emit CameraStopped();
return;
} // end of method DCVCameraHandler::StopCamera
/******************************************************************************
*
*** DCVCameraHandler::MirrorHorizontal
*
******************************************************************************/
void DCVCameraHandler::MirrorHorizontal()
{
m_bMirrorHorizontal = !m_bMirrorHorizontal;
return;
} // end of method DCVCameraHandler::MirrorHorizontal
/******************************************************************************
*
*** DCVCameraHandler::MirrorVertical
*
******************************************************************************/
void DCVCameraHandler::MirrorVertical()
{
m_bMirrorVertical = !m_bMirrorVertical;
return;
} // end of method DCVCameraHandler::MirrorVertical
/*****************************************************************************
*
*** DCVCameraHandler::CaptureImage
*
*****************************************************************************/
void DCVCameraHandler::CaptureImage()
{
if (m_ImageCapture.read(m_CapturedImage))
{
if (m_bMirrorHorizontal || m_bMirrorVertical)
{
DCVImage::EFlipMode eMode = DCVImage::eFlipX;
if (m_bMirrorHorizontal && m_bMirrorVertical)
{
eMode = DCVImage::eFlipXY;
} // end if
else if (m_bMirrorHorizontal)
{
eMode = DCVImage::eFlipY;
} // end else if
DCVImage Mirror;
m_CapturedImage.Flip(Mirror, eMode);
emit imageCaptured(Mirror);
} // end if
else
{
emit imageCaptured(m_CapturedImage);
} // end else
} // end if
return;
} // end of method DCVCameraHandler::CaptureImage