blob: af583d11de6ff2946a9c4d2b779ebb7e64e0fa26 (
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
|
#ifndef FTNOIR_TRACKER_HAT_H
#define FTNOIR_TRACKER_HAT_H
#include "facetracknoir/global-settings.h"
#include "ftnoir_tracker_base/ftnoir_tracker_base.h"
#include "ftnoir_tracker_hat_settings.h"
#include "ftnoir_arduino_type.h"
#include <QtSerialPort/QSerialPort>
#include <QThread>
#include <QTimer>
#include <QSettings>
#include <QMutex>
#include <QMutexLocker>
#include <cmath>
class FTNoIR_Tracker : public ITracker, QThread
{
public:
FTNoIR_Tracker();
virtual ~FTNoIR_Tracker() virt_override;
virtual void StartTracker( QFrame* frame ) virt_override;
virtual bool GiveHeadPoseData(double *data) virt_override;
void applysettings(const TrackerSettings& settings);
void notifyCenter();
void center();
void reset();
void sendcmd(QString* cmd);
void get_info(QString* info , int* tps );
protected:
void run(); // qthread override run method
private:
TArduinoData ArduinoData, HAT ; // Trame from Arduino
QByteArray datagram;
QSerialPort* SerialPort;
volatile bool stop;
QMutex lock;
QString sSerialPortName; // Port serial name
bool bEnableRoll;
bool bEnablePitch;
bool bEnableYaw;
bool bEnableX;
bool bEnableY;
bool bEnableZ;
bool bInvertRoll;
bool bInvertPitch;
bool bInvertYaw;
bool bInvertX;
bool bInvertY;
bool bInvertZ;
int iRollAxis;
int iPitchAxis;
int iYawAxis;
int iXAxis;
int iYAxis;
int iZAxis;
};
class FTNoIR_TrackerDll : public Metadata
{
public:
FTNoIR_TrackerDll();
~FTNoIR_TrackerDll();
void getFullName(QString *strToBeFilled);
void getShortName(QString *strToBeFilled);
void getDescription(QString *strToBeFilled);
void getIcon(QIcon *icon);
private:
QString trackerFullName; // Trackers' name and description
QString trackerShortName;
QString trackerDescription;
};
#endif // FTNOIR_TRACKER_HAT_H
|