-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCameraThread.h
87 lines (70 loc) · 1.5 KB
/
CameraThread.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#ifndef CAMERA_THREAD_H
#define CAMERA_THREAD_H
/** \file */
#include <QThread>
#include <QSemaphore>
#include <stdio.h>
#include <FCam/N9.h>
#include "CameraParameters.h"
#include <QString>
#include <QSettings>
#include "feedback.h"
class OverlayWidget;
class CameraThread : public QThread {
Q_OBJECT;
public:
CameraParameters* parameters;
feedBack feedback;
FCam::AsyncFileWriter writer;
CameraThread(OverlayWidget *o, QObject *parent = NULL) : QThread(parent) {
overlay = o;
keepGoing = true;
focus = false;
active = true;
cameralock = new QSemaphore(1);
parameters = new CameraParameters;
}
public slots:
void stop() {
keepGoing = false;
}
void pause() {
if (active) {
cameralock->acquire();
active = false;
}
}
void resume() {
if (!active) {
cameralock->release();
active = true;
}
}
void focus_on() {
focus = true;
}
void focus_on_tap() {
QSettings settings;
if(settings.value("focusOnTap",false) == true) focus = true;
}
void snapshot() {
takeSnapshot = true;
}
signals:
void newViewfinderFrame();
void exposureInfo(QString);
void exposureChanged(int);
void gainInfo(QString);
void gainChanged(int);
void pictureSaved(QString);
protected:
void run();
private:
bool keepGoing;
bool active;
bool focus;
bool takeSnapshot;
OverlayWidget *overlay;
QSemaphore *cameralock;
};
#endif