JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
KinectFaceTracker.cpp
Go to the documentation of this file.
1
2#include "WinBaseLib.h"
3
4#include "KinectFaceTracker.h"
5#include "NiDevice.h"
6#include "Graph.h"
7
8
9#ifdef ENABLE_KINECT_SDK
10
11using namespace jbxl;
12using namespace jbxwl;
13
14
16// Face Tracker クラス
17
18CKinectFaceTracker::CKinectFaceTracker(void)
19{
20 is_detected = FALSE;
21
22 m_image = NULL;
23 m_depth = NULL;
24
25 m_tracker = NULL;
26 m_image_data = NULL;
27 m_depth_data = NULL;
28 m_result = NULL;
29}
30
31
32
33void CKinectFaceTracker::free(void)
34{
35 //
36 if (m_result!=NULL) {
37 m_result->Release();
38 m_result = NULL;
39 }
40
41 if (m_image_data!=NULL) {
42 m_image_data->Release();
43 m_image_data = NULL;
44 }
45
46 if (m_depth_data!=NULL) {
47 m_depth_data->Release();
48 m_depth_data = NULL;
49 }
50
51 if (m_tracker!=NULL) {
52 m_tracker->Release();
53 m_tracker = NULL;
54 }
55}
56
57
58
59BOOL CKinectFaceTracker::create(int width, int height, uByte* image, uByte* depth)
60{
61 if (image==NULL || depth==NULL) return FALSE;
62
63 m_tracker = FTCreateFaceTracker();
64 if (m_tracker==NULL) return FALSE;
65
66 //
67 FT_CAMERA_CONFIG image_config;
68 FT_CAMERA_CONFIG depth_config;
69
70 image_config.Width = width;
71 image_config.Height = height;
72 image_config.FocalLength = NUI_CAMERA_COLOR_NOMINAL_FOCAL_LENGTH_IN_PIXELS*(width/640.0f);
73
74 depth_config.Width = width;
75 depth_config.Height = height;
76 depth_config.FocalLength = NUI_CAMERA_DEPTH_NOMINAL_FOCAL_LENGTH_IN_PIXELS*(width/320.0f);
77
78 HRESULT hr = m_tracker->Initialize(&image_config, &depth_config, NULL, NULL);
79 if (FAILED(hr)) {
80 // if hr==0x80070002 error, FaceTrackData.dll is missed
81 free();
82 return FALSE;
83 }
84
85 hr = m_tracker->CreateFTResult(&m_result);
86 if (FAILED(hr)) {
87 free();
88 return FALSE;
89 }
90
91 m_image_data = FTCreateImage();
92 m_depth_data = FTCreateImage();
93 if (!m_image_data || !m_depth_data) {
94 free();
95 return FALSE;
96 }
97
98 m_image_data->Attach(width, height, image, FTIMAGEFORMAT_UINT8_B8G8R8X8, width*4);
99 m_depth_data->Attach(width, height, depth, FTIMAGEFORMAT_UINT16_D13P3, width*2);
100
101 //
102 m_sensor.pVideoFrame = m_image_data;
103 m_sensor.pDepthFrame = m_depth_data;
104 m_sensor.ZoomFactor = 1.0f;
105 m_sensor.ViewOffset.x = 0;
106 m_sensor.ViewOffset.y = 0;
107
108 return TRUE;
109}
110
111
112
113BOOL CKinectFaceTracker::detect(FT_VECTOR3D* hint)
114{
115 if (m_tracker==NULL) return FALSE;
116
117 if (is_detected) {
118 HRESULT hr = m_tracker->ContinueTracking(&m_sensor, hint, m_result);
119 if (FAILED(hr) || FAILED(m_result->GetStatus())) is_detected = FALSE;
120 }
121 //
122 else {
123 HRESULT hr = m_tracker->StartTracking(&m_sensor, NULL, hint, m_result);
124 if (SUCCEEDED(hr) && SUCCEEDED(m_result->GetStatus())) is_detected = TRUE;
125 }
126
127 return is_detected;
128}
129
130
131
132RECT CKinectFaceTracker::getFaceRect(void)
133{
134 RECT rect;
135
136 this->m_result->GetFaceRect(&rect);
137 return rect;
138}
139
140
141
142Vector<float> CKinectFaceTracker::getFaceEulerXYZ(void)
143{
144 Vector<float> eul(0.0, 0.0, 0.0, 0.0, -1.0);
145
146 FLOAT scale;
147 FLOAT rotXYZ[3];
148 FLOAT posXYZ[3];
149
150 HRESULT hr = m_result->Get3DPose(&scale, rotXYZ, posXYZ);
151 if (FAILED(hr)) return eul;
152
153 eul.set((float)(rotXYZ[0]*DEGREE2RAD), (float)(rotXYZ[1]*DEGREE2RAD), (float)(rotXYZ[2]*DEGREE2RAD));
154
155 return eul;
156}
157
158
159
160void CKinectFaceTracker::drawFaceRect(ExCmnHead* viewdata, int scale, BOOL mirror, int col, int line)
161{
162 if (is_detected && viewdata!=NULL) {
163 //
164 MSGraph<unsigned int> vp;
165 vp.xs = viewdata->xsize;
166 vp.ys = viewdata->ysize;
167 vp.zs = 1;
168 vp.gp = (unsigned int*)viewdata->grptr;
169
170 RECT rect = getFaceRect();
171 int xs, xe, ys, ye;
172 ys = rect.top/scale;
173 ye = rect.bottom/scale;
174
175 if (scale<=0) scale = 1;
176 if (mirror) {
177 xs = rect.left/scale;
178 xe = rect.right/scale;
179 }
180 else {
181 xs = vp.xs - rect.left/scale - 1;
182 xe = vp.xs - rect.right/scale - 1;
183 }
184
185 MSGraph_Box(vp, xs, ys, xe, ye, col);
186 for (int i=1; i<line; i++) {
187 MSGraph_Box(vp, xs-i, ys-i, xe+i, ye+i, col);
188 MSGraph_Box(vp, xs+i, ys+i, xe-i, ye-i, col);
189 }
190 }
191}
192
193
194#endif // ENABLE_KINECT_SDK
195