JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
KinectWin.cpp
Go to the documentation of this file.
1
2#include "WinBaseLib.h"
3#include "KinectWin.h"
4#include "NiJointsTool.h"
5
6#include "Graph.h"
7
8using namespace jbxl;
9
10
11#ifdef ENABLE_KINECT_SDK
12
13using namespace jbxwl;
14
15
16CKinectWin::CKinectWin(void)
17{
18 device = NULL;
19 audio = NULL;
20
21#ifdef ENABLE_NI_SPEECH
22 speech = NULL;
23#endif
24
25 m_err_mesg = _T("");
26
27 m_image_scale = 2;
28 m_depth_scale = 2;
29 m_skeleton_line = 2;
30
31 m_is_detected = FALSE;
32 m_is_tracking = FALSE;
33 m_is_mirroring = TRUE;
34 //
35 m_use_image = TRUE;
36 m_use_led = FALSE;
37 m_use_motor = FALSE;
38 m_use_face = FALSE;
39 m_use_speech = TRUE;
40
41 //
42 m_enable_face = FALSE;
43 m_enable_speech = FALSE;
44 m_enable_motor = TRUE;
45
46 m_use_knct_smth = TRUE;
47 m_confidence = 0.5; // 現時点では 0.0より大きければ何でも良い.
48 m_profile = KINECT_SKEL_PROFILE_ALL;
49 m_ground_level = NI_DEFAULT_GROUND_LEVEL;
50
51 pViewData = NULL;
52 pDepthData = NULL;
53
54 hasDepthData = FALSE;
55 isDetectShadow = FALSE;
56 isDetectFace = FALSE;
57
58 tracking_user = 0;
59 tracking_deny = 0;
60
61 //
62 smoothParam.fSmoothing = 0.5f;
63 smoothParam.fCorrection = 0.5f;
64 smoothParam.fPrediction = 0.5f;
65 smoothParam.fJitterRadius = 0.05f;
66 smoothParam.fMaxDeviationRadius = 0.04f;
67
68 clearAvatarDetected();
69}
70
71
72
73CKinectWin::~CKinectWin(void)
74{
75 DEBUG_INFO("DESTRUCTOR: CKinectWin: START\n");
76 free();
77 DEBUG_INFO("DESTRUCTOR: CKinectWin: END\n");
78}
79
80
81
82BOOL CKinectWin::init(void)
83{
84 device = new CKinectDevice();
85
86 // for re-Initialize
87 ::NuiSetDeviceStatusCallback((NuiStatusProc)&KinectStatusProc, this);
88
89 //
90 DWORD mode = NUI_INITIALIZE_FLAG_USES_COLOR |
91 NUI_INITIALIZE_FLAG_USES_DEPTH_AND_PLAYER_INDEX |
92 NUI_INITIALIZE_FLAG_USES_SKELETON |
93 NUI_INITIALIZE_FLAG_USES_AUDIO;
94
95 BOOL ret = device->init(mode, m_use_image);
96 if (!ret) {
97 m_err_mesg = device->m_err_mesg;
98 }
99
100 //
101 setDevState(NI_STATE_DETECT_STOPPED);
102
103 return ret;
104}
105
106
107
108void CKinectWin::free(void)
109{
110 freeRingBuffer();
111
112 deleteDevice();
113 return;
114}
115
116
117
118void CKinectWin::deleteDevice(void)
119{
120 DEBUG_INFO("CKinectWin::deleteDevice(): START\n");
121
122 deleteNull(device);
123
124 DEBUG_INFO("CKinectWin::deleteDevice(): END\n");
125
126 return;
127}
128
129
130
131CString CKinectWin::get_err_message(void)
132{
133 DEBUG_INFO("CKinectWin::get_err_message(): => %s\n", ::ts2mbs(m_err_mesg));
134 CString mesg = m_err_mesg;
135 m_err_mesg = _T("");
136
137 return mesg;
138}
139
140
141
142void CKinectWin::clearJointsData(void)
143{
144 for (int i=0; i<KINECT_JOINT_NUM; i++) {
145 rotQuat[i].init(-1.0);
146 posVect[i].init(-1.0);
147 jntAngl[i] = 0.0;
148 }
149}
150
151
152
153BOOL CKinectWin::initRingBuffer(void)
154{
155 BOOL ret = TRUE;
156
157 for (int j=0; j<KINECT_JOINT_NUM; j++) {
158 posRing[j].init(NI_RING_BUFFER_SIZE, sizeof(Vector<float>));
159 rotRing[j].init(NI_RING_BUFFER_SIZE, sizeof(Quaternion<float>));
160 if (posRing[j].state<0 || rotRing[j].state<0) {
161 freeRingBuffer();
162 m_err_mesg = _T("CKinectWin::initRingBuffer(): WARNING: Out of Memory.");
163 ret = FALSE;
164 break;
165 }
166 }
167
168 return ret;
169}
170
171
172
173void CKinectWin::freeRingBuffer(void)
174{
175 for (int j=0; j<KINECT_JOINT_NUM; j++) {
176 if (posRing[j].enable) posRing[j].free();
177 if (rotRing[j].enable) rotRing[j].free();
178 }
179}
180
181
182
183void CKinectWin::clearRingBuffer(void)
184{
185 for (int j=0; j<KINECT_JOINT_NUM; j++) {
186 if (posRing[j].enable) posRing[j].clear();
187 if (rotRing[j].enable) rotRing[j].clear();
188 }
189}
190
191
192
193void CKinectWin::backup2RingBuffer(void)
194{
195 for (int j=0; j<KINECT_JOINT_NUM; j++) {
196 if (posVect[j].c>=m_confidence) posRing[j].put(&posVect[j]);
197 if (rotQuat[j].c>=m_confidence) rotRing[j].put(&rotQuat[j]);
198 }
199}
200
201
202
203
205//
206
207void CKinectWin::clearAvatarDetected(void)
208{
209 clearJointsData();
210 clearRingBuffer();
211
212 startPos = Vector<float>(0.0, 0.0, 0.0);
213 currentPos = Vector<float>(0.0, 0.0, 0.0);
214 m_is_detected = FALSE;
215 m_ground_level= NI_DEFAULT_GROUND_LEVEL;
216
217 return;
218}
219
220
221
222BOOL CKinectWin::checkAvatarDetected(void)
223{
224 if (posVect[NI_SDK_PELVIS].c>m_confidence && crdVect[NI_SDK_PELVIS].c>0.0) {
225 startPos = posVect[NI_SDK_PELVIS];
226 m_is_detected = TRUE;
227
228 // m_ground_level is not used now
229 if (posVect[NI_SDK_R_ANKLE].c>m_confidence && crdVect[NI_SDK_R_ANKLE].c>0.0) {
230 m_ground_level = posVect[NI_SDK_R_ANKLE].z - startPos.z;
231 if (posVect[NI_SDK_L_FOOT].c>m_confidence && crdVect[NI_SDK_L_FOOT].c>0.0) {
232 m_ground_level = Min(m_ground_level, posVect[NI_SDK_L_ANKLE].z - startPos.z);
233 }
234 }
235 else if (posVect[NI_SDK_L_FOOT].c>m_confidence && crdVect[NI_SDK_L_FOOT].c>0.0) {
236 m_ground_level = posVect[NI_SDK_L_ANKLE].z - startPos.z;
237 }
238 }
239
240 return m_is_detected;
241}
242
243
244
245void CKinectWin::setTiltMotor(int ang)
246{
247 if (m_use_motor && m_enable_motor) {
248 m_enable_motor = FALSE;
249 NuiCameraElevationSetAngle(ang);
250 Sleep(1000);
251 m_enable_motor = TRUE;
252 }
253}
254
255
256
257void CKinectWin::setMirroring(BOOL mirror)
258{
259 m_is_mirroring = mirror;
260}
261
262
263
264BOOL CKinectWin::startDetection(void)
265{
266 clearJointsData();
267
268 device->smoothParam = NULL;
269 if (m_use_knct_smth) device->smoothParam = &smoothParam;
270
271 tracking_user = 0;
272 tracking_deny = 0;
273 BOOL ret = device->start_Detection(m_profile);
274 if (ret) setLEDColor(NI_LED_BLINK_ORANGE);
275 else m_err_mesg = device->m_err_mesg;
276
277 // Start Face Tracking
278 if (ret && m_use_face) {
279 ret = device->create_Face();
280 if (!ret) m_err_mesg = device->m_err_mesg;
281 }
282
283 return ret;
284}
285
286
287
288BOOL CKinectWin::stopDetection(void)
289{
290 BOOL ret = device->stop_Detection();
291 if (!ret) m_err_mesg = device->m_err_mesg;
292 setLEDColor(NI_LED_GREEN);
293
294 tracking_user = 0;
295 tracking_deny = 0;
296
297 // Stop Face Tracking
298 isDetectFace = FALSE;
299 device->delete_Face();
300
301 return ret;
302}
303
304
305
306BOOL CKinectWin::restartDetection(void)
307{
308 BOOL ret = stopDetection();
309 if (ret) ret = startDetection();
310
311 return ret;
312}
313
314
315
316Vector4 CKinectWin::jointPositionData(int j)
317{
318 Vector4 vect;
319
320 if (j>=0 && j<KINECT_JOINT_NUM) {
321 vect = device->jointPosData[j];
322 }
323 else {
324 memset(&vect, 0, sizeof(Vector4));
325 }
326
327 return vect;
328}
329
330
331
332//
333// color is GRAPH_COLOR_BGRA
334//
335void CKinectWin::makeDisplayImage()
336{
337 int index;
338 uByte* src = NULL;
339 uByte* ptr;
340
341 if (pViewData==NULL) return;
342
343 if (device->image!=NULL && m_use_image) {
344 src = (uByte*)device->image->m_data;
345 }
346
347 //
348 if (src!=NULL) {
349 for (int j=0; j<pViewData->ysize; j++) {
350 int li;
351 int ls = j*m_image_scale*device->m_xsize;
352
353 for (int i=0; i<pViewData->xsize; i++) {
354 // Mirroring
355 if (m_is_mirroring) li = i*m_image_scale;
356 else li = (pViewData->xsize-i-1)*m_image_scale;
357
358 ptr = &(pViewData->point(i, j));
359 index = (ls + li)*4;
360 ptr[0] = src[index]; // B
361 ptr[1] = src[index+1]; // G
362 ptr[2] = src[index+2]; // R
363 ptr[3] = src[index+3]; // X
364 }
365 }
366 }
367
368 // No Camera Image
369 else {
370 for (int j=0; j<pViewData->ysize; j++) {
371 int li;
372 int ls = j*m_image_scale*device->m_xsize;
373
374 for (int i=0; i<pViewData->xsize; i++) {
375 // Mirror
376 if (m_is_mirroring) li = i*m_image_scale;
377 else li = (pViewData->xsize-i-1)*m_image_scale;
378
379 ptr = &(pViewData->point(i, j));
380 ptr[0] = ptr[1] = ptr[2] = 224; // Gray Background
381 ptr[3] = 0;
382 }
383 }
384 }
385}
386
387
388//
389// color is GRAPH_COLOR_MONO16
390// 表示データは 8bit
391//
392void CKinectWin::makeDisplayDepth(CExView* pview)
393{
394 if (pview==NULL) return;
395 pDepthData = &(pview->viewData);
396
397 uWord* src = NULL;
398 if (device->depth!=NULL && hasDepthData) {
399 src = (uWord*)device->depth->m_data;
400 }
401 if (src==NULL) return;
402
403 //
404 uWord max = pview->cMax;
405 uWord min = pview->cMin;
406 //
407 uWord* wrk = (uWord*)malloc(sizeof(uWord)*pDepthData->ysize*pDepthData->xsize);
408
409 //
410 for (int j=0; j<pDepthData->ysize; j++) {
411 int jj = j*pDepthData->xsize;
412 int ls = j*m_depth_scale*device->m_xsize;
413
414 for (int i=0; i<pDepthData->xsize; i++) {
415 // Mirroring
416 int li = i*m_depth_scale;
417 if (!m_is_mirroring) li = device->m_xsize - li - 1;
418 //
419 int k = jj + i;
420 wrk[k] = ::NuiDepthPixelToDepth(src[ls+li]);
421 if (wrk[k]>max) wrk[k] = max;
422 else if (wrk[k]<min) wrk[k] = min;
423 }
424 }
425
426 //
427 float dif = (float)(max - min);
428 uByte* ptr = (uByte*)pDepthData->grptr;
429
430 if (dif!=0.0) {
431 for (int i=0; i<pDepthData->ysize*pDepthData->xsize; i++) {
432 ptr[i] = (uByte)((max - wrk[i])/dif*255);
433 }
434 }
435 else {
436 for (int i=0; i<pDepthData->ysize*pDepthData->xsize; i++) {
437 ptr[i] = (uByte)(255 - wrk[i]/256);
438 }
439 }
440 ::free(wrk);
441
442 return;
443}
444
445
446
447
449// Tracking Main
450
451BOOL CKinectWin::trackingJoints(void)
452{
453 m_is_tracking = FALSE;
454
455 if (hasDepthData) {
456 //
457 //isDetectShadow = detectShadow(); // not use
458 int tuser = tracking_user;
459 tracking_user = device->wait_Skeleton(tracking_user, tracking_deny);
460
461 if (tuser!=tracking_user) {
462 m_is_detected = FALSE;
463 if (tracking_user==0) {
464 clearAvatarDetected();
465 lostTrackingUser(tuser); // virtual
466 }
467 else {
468 clearJointsData();
469 detectTrackingUser(tracking_user); // virtual
470 }
471 }
472
473 // Tracking
474 if (tracking_user>0 && tracking_user<=KINECT_USERS_NUM) {
475 //
476 getJointsPosData();
477 //
478 if (m_is_detected) {
479 convertJointsData(); // virtual
480 //
481 backup2RingBuffer();
482 saveJointsData(); // virtual
483 loggingJointsData(); // virtual
484 }
485 //
486 paintShadow();
487 if (m_is_detected) {
488 drawSkeleton(NiGetSkeletonColor(tracking_user), m_skeleton_line);
489 drawAddition(NiGetSkeletonColor(tracking_user), m_skeleton_line); // virtual
490 }
491 //
492 m_is_tracking = TRUE;
493 }
494 }
495 else {
496 m_is_detected = FALSE;
497 }
498
499 return m_is_tracking;
500}
501
502
503
504Vector4 CKinectWin::joint_PositionData(int j)
505{
506 Vector4 vect;
507
508 if (j>=0 && j<KINECT_JOINT_NUM) {
509 vect = device->jointPosData[j];
510 }
511 else {
512 memset(&vect, 0, sizeof(Vector4));
513 }
514
515 return vect;
516}
517
518
519//
520// Calculate posVect, crdVect
521//
522void CKinectWin::getJointsPosData(void)
523{
524 if (!m_is_mirroring) {
525 for (int j=0; j<KINECT_JOINT_NUM; j++) {
526 device->jointPosData[j].x = - device->jointPosData[j].x;
527 }
528 }
529
530 //
531 for (int j=0; j<KINECT_JOINT_NUM; j++) {
532 Vector4 pos = device->jointPosData[j];
533 int n = j;
534 if (m_is_mirroring) n = NiSDKMirrorJointNum(j, NiSDK_Kinect);
535 posVect[n].set(-pos.z, pos.x, pos.y);
536 }
537
538 // Tracking Mode
539 if (m_profile==KINECT_SKEL_PROFILE_ALL) {
540 posVect[NI_SDK_TORSO] = 2.0*posVect[NI_SDK_PELVIS] - (posVect[NI_SDK_R_HIP] + posVect[NI_SDK_L_HIP])/2.0;
541 posVect[NI_SDK_TORSO].c = Min(posVect[NI_SDK_R_HIP].c, posVect[NI_SDK_L_HIP].c);
542 posVect[NI_SDK_TORSO].c = Min(posVect[NI_SDK_TORSO].c, posVect[NI_SDK_PELVIS].c);
543 }
544 else if (m_profile==KINECT_SKEL_PROFILE_UPPER) {
545 /* Neck の座標は体軸上にない
546 // NECK + (CSHLDR-NECK)*4
547 Vector<float> torso_down = (posVect[NI_SDK_R_SHLDR] + posVect[NI_SDK_L_SHLDR])/2.0 - posVect[NI_SDK_NECK];
548 if (torso_down.z>0.0) torso_down = - torso_down;
549 Vector<float> vect = posVect[NI_SDK_NECK] + torso_down*4.0;
550
551 posVect[NI_SDK_TORSO] = vect;
552 posVect[NI_SDK_TORSO].c = Min(posVect[NI_SDK_R_SHLDR].c, posVect[NI_SDK_L_SHLDR].c);
553 posVect[NI_SDK_TORSO].c = Min(posVect[NI_SDK_TORSO].c, posVect[NI_SDK_NECK].c);
554 */
555
556 Vector<float> torso_down(0.0f, 0.0f, -0.2f);
557
558 posVect[NI_SDK_TORSO] = (posVect[NI_SDK_R_SHLDR] + posVect[NI_SDK_L_SHLDR])/2.0 + torso_down;
559 posVect[NI_SDK_TORSO].c = Min(posVect[NI_SDK_R_SHLDR].c, posVect[NI_SDK_L_SHLDR].c);
560 posVect[NI_SDK_PELVIS] = posVect[NI_SDK_TORSO] + torso_down;
561 }
562
563 //
564 set2DCoordinate();
565 checkBoneLength();
566 if (!m_is_detected) checkAvatarDetected();
567
568 //
569 currentPos = posVect[NI_SDK_PELVIS];
570 for (int j=0; j<KINECT_JOINT_NUM; j++) {
571 posVect[j] = posVect[j] - startPos;
572 if (posVect[j].c<m_confidence || crdVect[j].c<0.0) posVect[j].c = -1.0;
573 }
574 checkGroundLevel();
575}
576
577
578
579
581//
582
583BOOL CKinectWin::detectShadow(void)
584{
585 int label = 0;
586
587 if (pViewData==NULL) return FALSE;
588
589 //
590 for (int j=0; j<pViewData->ysize; j++) {
591 int li;
592 int lj = j*m_image_scale;
593
594 for (int i=0; i<pViewData->xsize; i++) {
595 // Mirroring
596 if (m_is_mirroring) li = i*m_image_scale;
597 else li = (pViewData->xsize-i-1)*m_image_scale;
598
599 // User Label
600 if (getDevState()==NI_STATE_DETECT_EXEC && hasDepthData) {
601 //label = device->depth->get_user(li/2, lj/2); // 320x240
602 label = device->depth->get_user_index(li, lj); // 640x480
603 if (label>0) {
604 if (tracking_user==label) return TRUE;
605 }
606 }
607 }
608 }
609
610 return FALSE;
611}
612
613
614
615void CKinectWin::paintShadow(void)
616{
617 int label = 0;
618 uByte* ptr;
619
620 if (pViewData==NULL) return;
621
622 if (getDevState()==NI_STATE_DETECT_EXEC && hasDepthData) {
623 //
624 for (int j=0; j<pViewData->ysize; j++) {
625 int li;
626 int lj = j*m_image_scale;
627
628 for (int i=0; i<pViewData->xsize; i++) {
629 // Mirroring
630 if (m_is_mirroring) li = i*m_image_scale;
631 else li = (pViewData->xsize-i-1)*m_image_scale;
632
633 // User Label
634 label = device->depth->get_user_index(li, lj); // 640x480
635 if (label>0) {
636 ptr = &(pViewData->point(i, j));
637 NiSetUserColor(label, ptr, m_use_image);
638 }
639 }
640 }
641 }
642}
643
644
645
646void CKinectWin::drawSkeleton(int col, int line)
647{
648 drawJointConnection(NI_SDK_PELVIS, NI_SDK_TORSO, col, line);
649 drawJointConnection(NI_SDK_TORSO, NI_SDK_NECK, col, line);
650 drawJointConnection(NI_SDK_NECK, NI_SDK_HEAD, col, line);
651
652 drawJointConnection(NI_SDK_NECK, NI_SDK_L_SHLDR, col, line);
653 drawJointConnection(NI_SDK_L_SHLDR, NI_SDK_L_ELBOW, col, line);
654 drawJointConnection(NI_SDK_L_ELBOW, NI_SDK_L_WRIST, col, line);
655 drawJointConnection(NI_SDK_L_WRIST, NI_SDK_L_HAND, col, line);
656
657 drawJointConnection(NI_SDK_NECK, NI_SDK_R_SHLDR, col, line);
658 drawJointConnection(NI_SDK_R_SHLDR, NI_SDK_R_ELBOW, col, line);
659 drawJointConnection(NI_SDK_R_ELBOW, NI_SDK_R_WRIST, col, line);
660 drawJointConnection(NI_SDK_R_WRIST, NI_SDK_R_HAND, col, line);
661
662 drawJointConnection(NI_SDK_PELVIS, NI_SDK_L_HIP, col, line);
663 drawJointConnection(NI_SDK_L_HIP, NI_SDK_L_KNEE, col, line);
664 drawJointConnection(NI_SDK_L_KNEE, NI_SDK_L_ANKLE, col, line);
665 drawJointConnection(NI_SDK_L_ANKLE, NI_SDK_L_FOOT, col, line);
666
667 drawJointConnection(NI_SDK_PELVIS, NI_SDK_R_HIP, col, line);
668 drawJointConnection(NI_SDK_R_HIP, NI_SDK_R_KNEE, col, line);
669 drawJointConnection(NI_SDK_R_KNEE, NI_SDK_R_ANKLE, col, line);
670 drawJointConnection(NI_SDK_R_ANKLE, NI_SDK_R_FOOT, col, line);
671}
672
673
674
675void CKinectWin::drawJointConnection(int j1, int j2, int col, int line)
676{
677 if (pViewData==NULL) return;
678
679 MSGraph<unsigned int> vp;
680 vp.xs = pViewData->xsize;
681 vp.ys = pViewData->ysize;
682 vp.zs = 1;
683 vp.gp = (unsigned int*)pViewData->grptr;
684
685 if (crdVect[j1].c>0.0 && crdVect[j2].c>0.0) {
686 MSGraph_Line(vp, crdVect[j1].x, crdVect[j1].y, crdVect[j2].x, crdVect[j2].y, col);
687 for (int i=1; i<line; i++) {
688 MSGraph_Line(vp, crdVect[j1].x+i, crdVect[j1].y, crdVect[j2].x+i, crdVect[j2].y, col);
689 MSGraph_Line(vp, crdVect[j1].x-i, crdVect[j1].y, crdVect[j2].x-i, crdVect[j2].y, col);
690 MSGraph_Line(vp, crdVect[j1].x, crdVect[j1].y+i, crdVect[j2].x, crdVect[j2].y+i, col);
691 MSGraph_Line(vp, crdVect[j1].x, crdVect[j1].y-i, crdVect[j2].x, crdVect[j2].y-i, col);
692 }
693 }
694}
695
696
697
698void CKinectWin::set2DCoordinate(void)
699{
700 for (int j=0; j<KINECT_JOINT_NUM; j++) {
701 crdVect[j].init(-1.0);
702 }
703
704 //
705 if (device->depth!=NULL && pViewData!=NULL) {
706 //
707 for (int j=0; j<KINECT_JOINT_NUM; j++) {
708 Vector4 pos;
709
710 if (j==NI_SDK_PELVIS || j==NI_SDK_TORSO) {
711 if (m_profile==KINECT_SKEL_PROFILE_UPPER) {
712 Vector4 pos_neck = device->jointPosData[NI_SDK_NECK];
713 Vector4 pos_rshd = device->jointPosData[NI_SDK_R_SHLDR];
714 Vector4 pos_lshd = device->jointPosData[NI_SDK_L_SHLDR];
715
716 pos.x = (FLOAT)((pos_rshd.x + pos_lshd.x)*1.5 - pos_neck.x*2.0); // NECK + (CSHLDR-NECK)*3
717 pos.y = (FLOAT)((pos_rshd.y + pos_lshd.y)*1.5 - pos_neck.y*2.0);
718 pos.z = (FLOAT)((pos_rshd.z + pos_lshd.z)*1.5 - pos_neck.z*2.0);
719 //pos.w = (FLOAT)((pos_rshd.w + pos_lshd.w)*1.5 - pos_neck.w*2.0);
720 }
721 else if (j==NI_SDK_TORSO) {
722 Vector4 pos_pelv = device->jointPosData[NI_SDK_PELVIS];
723 Vector4 pos_rhip = device->jointPosData[NI_SDK_R_HIP];
724 Vector4 pos_lhip = device->jointPosData[NI_SDK_L_HIP];
725
726 pos.x = (FLOAT)(pos_pelv.x*2.0 -(pos_rhip.x+pos_lhip.x)*0.5);
727 pos.y = (FLOAT)(pos_pelv.y*2.0 -(pos_rhip.y+pos_lhip.y)*0.5);
728 pos.z = (FLOAT)(pos_pelv.z*2.0 -(pos_rhip.z+pos_lhip.z)*0.5);
729 //pos.w = (FLOAT)(pos_pelv.w*2.0 -(pos_rhip.w+pos_lhip.w)*0.5);
730 }
731 else {
732 pos = device->jointPosData[j]; // j==NI_SDK_PELVIS
733 }
734 }
735 else {
736 pos = device->jointPosData[j];
737 }
738
739 float x, y;
740 NuiTransformSkeletonToDepthImage(pos, &x, &y, NUI_IMAGE_RESOLUTION_640x480);
741
742 int xs = (int)x;
743 int ys = (int)y;
744 if (xs>0 && ys>0) { // 縁(0)は除外
745 device->depth->get_image_coord(&xs, &ys);
746 if (xs>=0) xs = xs/m_image_scale;
747 if (ys>=0) ys = ys/m_image_scale;
748
749 crdVect[j].x = xs;
750 crdVect[j].y = ys;
751 if (xs>0 && xs<pViewData->xsize && ys>0 && ys<pViewData->ysize) {
752 crdVect[j].c = 1.0;
753 }
754 }
755 }
756 }
757
758 return;
759}
760
761
762
763
765// Speech Platform
766
767#ifdef ENABLE_NI_SPEECH
768
769BOOL CKinectWin::initSpeech(void)
770{
771 m_err_mesg = _T("");
772
773 if (audio==NULL) audio = new CKinectAudio();
774
775 BOOL ret = audio->init(device->context, KINECT_AUDIO_SINGLE_AEC);
776 if (!ret) m_err_mesg = _T("CKinectWin::initSpeech(): ERROR: Audio Initialization Error!!");
777
778 //
779 if (ret) {
780 if (speech==NULL) speech = makeSpeech();
781 WAVEFORMATEX format = audio->getAudioFormat();
782 IStream* stream = audio->getIStream();
783 ret = speech->init(stream, &format);
784 if (!ret) m_err_mesg = _T("CKinectWin::initSpeech(): ERROR: Speech Initialization Error!!");
785 }
786
787 //
788 if (!ret) {
789 if (speech!=NULL) {
790 speech->free();
791 deleteNull(speech);
792 }
793 deleteNull(audio);
794 return FALSE;
795 }
796
797 return TRUE;
798}
799
800
801
802BOOL CKinectWin::createSpeech(LPCTSTR lang, LPCTSTR grfile)
803{
804 m_err_mesg = _T("");
805
806 BOOL ret = TRUE;
807 if (speech==NULL) ret = initSpeech();
808
809 if (ret) {
810 ret = speech->create(lang);
811 if (!ret) m_err_mesg = _T("CKinectWin::createSpeech(): ERROR: Speech Context Creation Error!!\nPerhaps, Language Pack is not installed.");
812 }
813 //
814 if (ret) {
815 ret = speech->load(grfile);
816 if (!ret) {
817 m_err_mesg = _T("CKinectWin::createSpeech(): ERROR: Grammar File Loading Error!!\nFile = ");
818 m_err_mesg += grfile;
819 }
820 }
821
822 //
823 if (!ret) return FALSE;
824 return TRUE;
825}
826
827
828
829BOOL CKinectWin::startSpeech(float confidence)
830{
831 m_err_mesg = _T("");
832
833 if (audio==NULL || speech==NULL) {
834 m_err_mesg = _T("CKinectWin::startSpeech(): ERROR: Audio or Speech Instance is/are NULL!!");
835 return FALSE;
836 }
837
838 BOOL ret = audio->startCapture();
839 if (!ret) m_err_mesg = _T("CKinectWin::startSpeech(): ERROR: Audio Capture Starting Error!!");
840 //
841 if (ret) {
842 ret = speech->start(confidence);
843 if (!ret) {
844 audio->stopCapture();
845 m_err_mesg = _T("CKinectWin::startSpeech(): ERROR: Speech Platform Starting Error!!");
846 }
847 }
848 //
849 if (!ret) {
850 if (m_err_mesg==_T("")) m_err_mesg = _T("CKinectWin::startSpeech(): ERROR: Unknown Error!!");
851 return FALSE;
852 }
853
854 return TRUE;
855}
856
857
858
859void CKinectWin::stopSpeech(void)
860{
861 if (speech!=NULL) {
862 speech->stop();
863 }
864 //
865 if (audio!=NULL) {
866 audio->stopCapture();
867 }
868
869 return;
870}
871
872
873
874void CKinectWin::deleteSpeech(BOOL rls)
875{
876 DEBUG_INFO("CKinectWin::deleteSpeech(): START\n");
877
878 if (speech!=NULL) {
879 stopSpeech();
880 //
882 if (rls) speech->free();
883 delete speech;
884 speech = NULL;
885 }
886
887 //
888 deleteNull(audio);
889
890 DEBUG_INFO("CKinectWin::deleteSpeech(): END\n");
891 return;
892}
893
894
895#endif
896
897
899// Face
900
901Quaternion<float> CKinectWin::getFaceRotation(void)
902{
903 Quaternion<float> quat(1.0, 0.0, 0.0, 0.0, 1.0);
904 Vector<float> vect;
905 Vector<float> eulr = device->face->getFaceEulerXYZ();
906
907 if (m_is_mirroring) {
908 vect.set(-eulr.x, -eulr.y, eulr.z);
909 }
910 else {
911 vect.set(-eulr.x, eulr.y, -eulr.z);
912 }
913
914 quat.setEulerYZX(vect);
915
916 return quat;
917}
918
919
920
921
923// CallBack
924
925void CKinectWin::callback_status_changed(BOOL success, const OLECHAR* instanceName, const OLECHAR* deviceName)
926{
927 if (success) {
928 DEBUG_INFO("CKinectWin:::called_change_status(): SUCCEEDED: %s %s\n", (char*)instanceName, (char*)deviceName);
929 // Initialize the Kinect sensor identified by the instanceName parameter.
930 }
931 else {
932 DEBUG_INFO("CKinectWin::called_change_status(): ERROR: %s %s\n", (char*)instanceName, (char*)deviceName);
933 // Uninitialize the Kinect sensor identified by the instanceName parameter.
934 }
935}
936
937
938
939
941// CallBack
942
943void CALLBACK jbxwl::KinectStatusProc(HRESULT hr, const OLECHAR* instanceName, const OLECHAR* deviceName, void* pUserData)
944{
945 CKinectWin* kinect = (CKinectWin*)pUserData;
946
947 if (SUCCEEDED(hr)) {
948 if (kinect!=NULL) kinect->callback_status_changed(TRUE, instanceName, deviceName);
949 }
950 else {
951 if (kinect!=NULL) kinect->callback_status_changed(FALSE, instanceName, deviceName);
952 }
953}
954
955
956#endif // ENABLE_KINECT_SDK
957
958
int NI_SDK_R_KNEE
int NI_SDK_R_HAND
int NI_SDK_L_WRIST
int NI_SDK_L_HAND
int NI_SDK_L_HIP
int NI_SDK_R_HIP
int NI_SDK_R_SHLDR
int NI_SDK_L_SHLDR
int NI_SDK_R_ANKLE
int NI_SDK_HEAD
int NI_SDK_PELVIS
int NI_SDK_NECK
int NI_SDK_R_ELBOW
int NI_SDK_L_FOOT
int NI_SDK_L_KNEE
int NI_SDK_L_ANKLE
int NI_SDK_R_FOOT
int NI_SDK_TORSO
int NI_SDK_L_ELBOW
int NI_SDK_R_WRIST
#define NI_DEFAULT_GROUND_LEVEL
Definition NiToolWin.h:23
#define NI_RING_BUFFER_SIZE
Definition NiToolWin.h:24
ExCmnHead viewData
Definition ExView.h:72
void NiSetUserColor(int label, uByte *ptr, BOOL use_image=TRUE)
Definition NiToolWin.cpp:13
int NiSDKMirrorJointNum(int joint, NiSDK_Lib lib)
unsigned int NiGetSkeletonColor(int label)
Definition NiToolWin.cpp:45
void deleteNull(T *&ptr)
Definition WinTools.h:229