blob: 2430f5f05d135ef51b49fe9cdb8ed89f8a2f099f (
plain)
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
|
/* Copyright (c) 2012 Patrick Ruoff
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*/
#ifndef FTNOIR_TRACKER_PT_H
#define FTNOIR_TRACKER_PT_H
#ifdef OPENTRACK_API
# include "ftnoir_tracker_base/ftnoir_tracker_base.h"
# include "facetracknoir/global-settings.h"
#endif
#include "ftnoir_tracker_pt_settings.h"
#include "frame_observer.h"
#include "camera.h"
#include "point_extractor.h"
#include "point_tracker.h"
#include "pt_video_widget.h"
#include "timer.h"
#include <QThread>
#include <QMutex>
#include <QMutexLocker>
#include <QTime>
#include <opencv2/opencv.hpp>
#ifndef OPENTRACK_API
# include <boost/shared_ptr.hpp>
#else
# include "FTNoIR_Tracker_PT/boost-compat.h"
#endif
#include <vector>
//-----------------------------------------------------------------------------
// Constantly processes the tracking chain in a separate thread
class Tracker : public ITracker, QThread, public FrameProvider
{
public:
Tracker();
~Tracker();
// --- ITracker interface ---
virtual void Initialize(QFrame *videoframe);
#ifdef OPENTRACK_API
virtual void StartTracker(QFrame* parent_window);
virtual bool GiveHeadPoseData(double* data);
#else
virtual void StartTracker(HWND parent_window);
virtual void StopTracker(bool exit);
virtual bool GiveHeadPoseData(THeadPoseData *data);
#endif
virtual void refreshVideo();
void apply(const TrackerSettings& settings);
void center();
void reset(); // reset the trackers internal state variables
void run();
void get_pose(FrameTrafo* X_CM) { QMutexLocker lock(&mutex); *X_CM = point_tracker.get_pose(); }
int get_n_points() { QMutexLocker lock(&mutex); return point_extractor.get_points().size(); }
void get_cam_info(CamInfo* info) { QMutexLocker lock(&mutex); *info = camera.get_info(); }
protected:
// --- MutexedFrameProvider interface ---
virtual bool get_frame_and_points(cv::Mat& frame, boost::shared_ptr< std::vector<cv::Vec2f> >& points);
// --- thread ---
QMutex mutex;
// thread commands
enum Command {
ABORT = 1<<0,
PAUSE = 1<<1
};
void set_command(Command command);
void reset_command(Command command);
int commands;
int sleep_time;
// --- tracking chain ---
#ifdef OPENTRACK_API
CVCamera camera;
#else
VICamera camera;
#endif
FrameRotation frame_rotation;
PointExtractor point_extractor;
PointTracker point_tracker;
bool tracking_valid;
FrameTrafo X_GH_0; // for centering
cv::Vec3f t_MH; // translation from model frame to head frame
cv::Matx33f R_GC; // rotation from opengl reference frame to camera frame
// --- ui ---
cv::Mat frame; // the output frame for display
void update_show_video_widget();
bool show_video_widget;
#ifdef OPENTRACK_API
PTVideoWidget* video_widget;
#endif
QFrame* video_frame;
// --- misc ---
bool bEnableRoll;
bool bEnablePitch;
bool bEnableYaw;
bool bEnableX;
bool bEnableY;
bool bEnableZ;
long frame_count;
Timer time;
};
#undef VideoWidget
#endif // FTNOIR_TRACKER_PT_H
|