JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
KinectFaceTracker.h
Go to the documentation of this file.
1#pragma once
2
3
4#ifdef ENABLE_KINECT_SDK
5
6
7#include <NuiApi.h>
8
9#include "ExClass.h"
10#include "Vector.h"
11
12#include <FaceTrackLib.h>
13
14
15// Lib
16#pragma comment(lib, "FaceTrackLib.lib")
17
18
19//
20namespace jbxwl {
21
22
23//
24// Face Tracker クラス
25//
26class CKinectFaceTracker
27{
28public:
29 CKinectFaceTracker(void);
30 virtual ~CKinectFaceTracker(void) { free();}
31
32public:
33 BOOL is_detected;
34
35 uByte* m_image;
36 uByte* m_depth;
37
38public:
39 IFTFaceTracker* m_tracker;
40 IFTImage* m_image_data;
41 IFTImage* m_depth_data;
42 IFTResult* m_result;
43
44 FT_SENSOR_DATA m_sensor;
45
46public:
47 void free(void);
48 BOOL create(int width, int height, uByte* image, uByte* depth);
49
50 BOOL detect(FT_VECTOR3D* hint);
51 RECT getFaceRect(void);
52 Vector<double> getFaceEulerXYZ(void);
53
54 void drawFaceRect(ExCmnHead* view, int scale, BOOL mirror, int col, int line);
55};
56
57
58} // namespace
59
60
61#endif