-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathVideoView.cpp
More file actions
221 lines (196 loc) · 6.41 KB
/
VideoView.cpp
File metadata and controls
221 lines (196 loc) · 6.41 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
#include "../VideoView.h"
// OS X puts the headers in a different location in the include path than
// Windows and Linux, so we need to distinguish between OS X and the other
// systems.
#ifdef __APPLE__
#include <OpenGL/glu.h>
#else
#include <GL/glu.h>
#endif
#include <biotracker/util/ScreenHelper.h>
namespace BioTracker {
namespace Gui {
VideoView::VideoView(QWidget *parent, Core::BioTrackerApp &biotracker)
: QOpenGLWidget(parent)
, m_openGLLogger(this)
, m_currentMode(Mode::INTERACTION)
, m_screenPicRatio(0)
, m_biotracker(biotracker)
, m_view(Core::TrackingAlgorithm::OriginalView)
, m_painter()
, m_firstAttempt(true) {
setFocusPolicy(Qt::FocusPolicy::ClickFocus);
}
void VideoView::setMode(const VideoView::Mode mode) {
m_currentMode = mode;
switch (mode) {
case Mode::PANZOOM:
setCursor(Qt::OpenHandCursor);
break;
case Mode::INTERACTION:
setCursor(Qt::ArrowCursor);
break;
default:
assert(false);
break;
}
}
void VideoView::fitToWindow() {
makeCurrent();
// reset PanZoomState
m_panZoomState = BioTracker::Core::PanZoomState();
update();
}
void VideoView::handleLoggedMessage(const QOpenGLDebugMessage &debugMessage) {
std::cout << debugMessage.message().toStdString() << std::endl;
}
void VideoView::paintGL() {
BioTracker::Core::TextureObject const &texture =
m_biotracker.getTrackingThread().getTexture();
const size_t width = this->width();
const size_t height = this->height();
const int imageCols = texture.width();
const int imageRows = texture.height();
// calculate ratio of screen to displayed image
const float imgRatio = static_cast<float>(imageCols) / imageRows;
const float windowRatio = static_cast<float>(width) / height;
if (windowRatio < imgRatio) {
m_screenPicRatio = imageRows / (width / imgRatio);
} else {
m_screenPicRatio = imageCols / (height * imgRatio);
}
QPainter painter(this);
m_biotracker.paint(width, height, painter, m_panZoomState, m_view);
}
QPoint VideoView::unprojectScreenPos(QPoint mouseCoords) {
BioTracker::Core::TextureObject const &texture =
m_biotracker.getTrackingThread().getTexture();
// variables required to map window coordinates to picture coordinates
return BioTracker::Core::ScreenHelper::screenToImageCoords(
m_panZoomState,
texture.width(), texture.height(),
width(), height(),
mouseCoords
);
}
void VideoView::keyPressEvent(QKeyEvent *e) {
e->accept();
QKeyEvent event(e->type(), e->key(), e->modifiers(), e->text());
m_biotracker.keyboardEvent(&event);
}
void VideoView::mouseMoveEvent(QMouseEvent *e) {
switch (m_currentMode) {
case Mode::PANZOOM: {
if (m_panZoomState.panState) {
const QPointF delta = e->localPos() - (*m_panZoomState.panState).lastPos;
(*m_panZoomState.panState).lastPos = e->localPos();
m_panZoomState.isChanged = true;
m_panZoomState.panX -= static_cast<float>(delta.x());
m_panZoomState.panY -= static_cast<float>(delta.y());
update();
}
break;
}
case Mode::INTERACTION: {
e->accept();
QPoint p = unprojectScreenPos(e->pos());
const QPointF localPos(p);
QMouseEvent modifiedEvent(e->type(),localPos,e->screenPos(),e->button(),e->buttons(),e->modifiers());
m_biotracker.mouseEvent(&modifiedEvent);
break;
}
default: {
assert(false);
break;
}
}
}
void VideoView::mousePressEvent(QMouseEvent *e) {
switch (m_currentMode) {
case Mode::PANZOOM: {
if (QApplication::keyboardModifiers() == Qt::NoModifier) {
m_panZoomState.isChanged = true;
m_panZoomState.panState = BioTracker::Core::CurrentPanState(e->localPos());
setCursor(Qt::ClosedHandCursor);
}
if (e->button() == Qt::LeftButton && e->type() == QEvent::MouseButtonDblClick) {
fitToWindow();
}
break;
}
case Mode::INTERACTION: {
e->accept();
QPoint p = unprojectScreenPos(e->pos());
const QPointF localPos(p);
QMouseEvent modifiedEvent(e->type(),localPos,e->screenPos(),e->button(),e->buttons(),e->modifiers());
m_biotracker.mouseEvent(&modifiedEvent);
break;
}
default: {
assert(false);
break;
}
}
}
void VideoView::mouseReleaseEvent(QMouseEvent *e) {
switch (m_currentMode) {
case Mode::PANZOOM: {
setCursor(Qt::OpenHandCursor);
m_panZoomState.panState.reset();
break;
}
case Mode::INTERACTION: {
e->accept();
QPoint p = unprojectScreenPos(e->pos());
const QPointF localPos(p);
QMouseEvent modifiedEvent(e->type(),localPos,e->screenPos(),e->button(),e->buttons(),e->modifiers());
m_biotracker.mouseEvent(&modifiedEvent);
break;
}
default: {
assert(false);
break;
}
}
}
void VideoView::wheelEvent(QWheelEvent *e) {
BioTracker::Core::TextureObject const &texture =
m_biotracker.getTrackingThread().getTexture();
switch (m_currentMode) {
case Mode::PANZOOM: {
if (e->orientation() == Qt::Vertical) {
const int numDegrees = e->delta();
const float deltaZoom = numDegrees;
m_panZoomState = BioTracker::Core::ScreenHelper::zoomTo(
m_panZoomState,
texture.width(), texture.height(),
this->width(), this->height(),
deltaZoom,
e->pos()
);
update();
e->accept();
}
break;
}
case Mode::INTERACTION: {
e->accept();
const QPoint p = unprojectScreenPos(e->pos());
const QPointF localPos(p);
QWheelEvent modifiedEvent(e->pos(),localPos,e->pixelDelta(),e->angleDelta(),e->delta(),e->orientation(),e->buttons(),
e->modifiers());
QCoreApplication::sendEvent(QApplication::activeWindow(), &modifiedEvent);
m_biotracker.mouseWheelEvent(&modifiedEvent);
break;
}
default: {
assert(false);
break;
}
}
}
bool VideoView::isZoomed() {
return m_panZoomState.isChanged;
}
}
}