blob: 1f986e22a2cf3bb585c865077d6684a0f35d228e (
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
|
#include <cmath>
#include "api/plugin-api.hpp"
#include "compat/timer.hpp"
#include "compat/macros.hpp"
// Kinect Header files
#include <Kinect.h>
#include <Kinect.Face.h>
#pragma once
// Safe release for interfaces
template<class Interface>
inline void SafeRelease(Interface *& pInterfaceToRelease)
{
if (pInterfaceToRelease != nullptr)
{
pInterfaceToRelease->Release();
pInterfaceToRelease = nullptr;
}
}
class KinectFaceTracker : public ITracker
{
public:
KinectFaceTracker();
~KinectFaceTracker() override;
module_status start_tracker(QFrame* aFrame) override;
void data(double *data) override;
bool center() override;
private:
Timer t;
// Kinect stuff
static const int cColorWidth = 1920;
static const int cColorHeight = 1080;
void Update();
HRESULT InitializeDefaultSensor();
void ProcessFaces();
HRESULT UpdateBodyData(IBody** ppBodies);
void ExtractFaceRotationInDegrees(const Vector4* pQuaternion, float* pPitch, float* pYaw, float* pRoll);
// Current Kinect
IKinectSensor* m_pKinectSensor;
// Coordinate mapper
ICoordinateMapper* m_pCoordinateMapper;
// Color reader
IColorFrameReader* m_pColorFrameReader;
// Body reader
IBodyFrameReader* m_pBodyFrameReader;
// Face sources
IHighDefinitionFaceFrameSource* m_pFaceFrameSource;
// Face readers
IHighDefinitionFaceFrameReader* m_pFaceFrameReader;
//
RGBQUAD* m_pColorRGBX;
CameraSpacePoint iLastFacePosition;
CameraSpacePoint iFacePosition;
CameraSpacePoint iFacePositionCenter;
Vector4 iFaceRotationQuaternion;
// As Yaw, Pitch, Roll
CameraSpacePoint iLastFaceRotation;
CameraSpacePoint iFaceRotation;
CameraSpacePoint iFaceRotationCenter;
};
|