JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
OpenNi2Win.cpp
Go to the documentation of this file.
1
2#ifndef _CRT_SECURE_NO_WARNINGS
3#define _CRT_SECURE_NO_WARNINGS
4#endif
5
6
7#include "..\stdafx.h"
8
9#include "OpenNiWin.h"
10#include "NiJointsTool.h"
11
12#include "Graph.h"
13#include "WinTools.h"
14
15
16using namespace jbxl;
17
18
19#ifdef ENABLE_OPENNI
20
21using namespace jbxwl;
22
23
24COpenNiWin::COpenNiWin(void)
25{
26 m_err_mesg = _T("");
27
28 audio = NULL;
29 speech = NULL;
30
31 m_image_scale = 2;
32 m_depth_scale = 2;
33 m_skeleton_line = 2;
34
35 m_is_tracking = FALSE;
36 m_is_detected = FALSE;
37 m_is_mirroring = TRUE;
38 //
39 m_use_image = TRUE;
40 m_use_led = FALSE;
41 m_use_motor = FALSE;
42 m_use_face = FALSE;
43 m_use_speech = FALSE;
44
45 // 実際に使用できるかどうか
46 m_enable_face = FALSE;
47 m_enable_speech = FALSE;
48 m_enable_motor = TRUE;
49
50 m_use_nite_smth = TRUE;
51 m_nite_smooth = 0.0;
52 m_force_pose = FALSE;
53
54 m_confidence = 0.75;
55 m_profile = XN_SKEL_PROFILE_ALL;
56 m_ground_level = NI_DEFAULT_GROUND_LEVEL;
57
58 pViewData = NULL;
59 pDepthData = NULL;
60
61 hasDepthData = FALSE;
62 hasUserData = FALSE;
63 isDetectShadow = FALSE;
64 isDetectFace = FALSE;
65
66 clearAvatarDetected();
67}
68
69
70
71BOOL COpenNiWin::init(void)
72{
73 BOOL ret = COpenNiTool::init(m_use_image);
74
75 return ret;
76}
77
78
79
80void COpenNiWin::free(void)
81{
82 freeRingBuffer();
83 COpenNiTool::free();
84
85 return;
86}
87
88
89
90CString COpenNiWin::get_err_message(void)
91{
92 CString mesg = mbs2ts((char*)COpenNiTool::m_err_mesg.buf);
93
94 if (mesg.IsEmpty()) {
95 mesg = m_err_mesg;
96 m_err_mesg = _T("");
97 }
98
99 return mesg;
100}
101
102
103
104void COpenNiWin::clearJointsData(void)
105{
106 for (int i=0; i<OPENNI_JOINT_NUM; i++) {
107 rotQuat[i].init(-1.0);
108 posVect[i].init(-1.0);
109 jntAngl[i] = 0.0;
110 }
111}
112
113
114
115BOOL COpenNiWin::initRingBuffer(void)
116{
117 BOOL ret = TRUE;
118
119 for (int j=0; j<OPENNI_JOINT_NUM; j++) {
120 posRing[j].init(NI_RING_BUFFER_SIZE, sizeof(Vector<double>));
121 rotRing[j].init(NI_RING_BUFFER_SIZE, sizeof(Quaternion));
122 if (posRing[j].state<0 || rotRing[j].state<0) {
123 freeRingBuffer();
124 m_err_mesg = _T("COpenNiWin::initRingBuffer(): WARNING: Out of Memory.");
125 ret = FALSE;
126 break;
127 }
128 }
129
130 return ret;
131}
132
133
134
135void COpenNiWin::freeRingBuffer(void)
136{
137 for (int j=0; j<OPENNI_JOINT_NUM; j++) {
138 if (posRing[j].enable) posRing[j].free();
139 if (rotRing[j].enable) rotRing[j].free();
140 }
141}
142
143
144
145void COpenNiWin::clearRingBuffer(void)
146{
147 for (int j=0; j<OPENNI_JOINT_NUM; j++) {
148 if (posRing[j].enable) posRing[j].clear();
149 if (rotRing[j].enable) rotRing[j].clear();
150 }
151}
152
153
154
155void COpenNiWin::backup2RingBuffer(void)
156{
157 for (int j=0; j<OPENNI_JOINT_NUM; j++) {
158 if (posVect[j].c>=m_confidence) posRing[j].put(&posVect[j]);
159 if (rotQuat[j].c>=m_confidence) rotRing[j].put(&rotQuat[j]);
160 //posRing[j].put(&posVect[j]);
161 //rotRing[j].put(&rotQuat[j]);
162 }
163}
164
165
166
167
169//
170
171void COpenNiWin::clearAvatarDetected(void)
172{
173 clearJointsData();
174 clearRingBuffer();
175
176 startPos = Vector<double>(0.0, 0.0, 0.0);
177 currentPos = Vector<double>(0.0, 0.0, 0.0);
178 m_is_detected = FALSE;
179 m_ground_level = NI_DEFAULT_GROUND_LEVEL;
180
181 return;
182}
183
184
185//
186BOOL COpenNiWin::checkAvatarDetected(void)
187{
188 if (posVect[NI_SDK_PELVIS].c>=m_confidence && crdVect[NI_SDK_PELVIS].c>0.0) {
189 startPos = posVect[NI_SDK_PELVIS];
190 m_is_detected = TRUE;
191
192 // m_ground_level is not used now
193 if (posVect[NI_SDK_R_ANKLE].c>=m_confidence && crdVect[NI_SDK_R_ANKLE].c>0.0) {
194 m_ground_level = posVect[NI_SDK_R_ANKLE].z - startPos.z;
195 if (posVect[NI_SDK_L_ANKLE].c>=m_confidence && crdVect[NI_SDK_L_ANKLE].c>0.0) {
196 m_ground_level = Min(m_ground_level, posVect[NI_SDK_L_ANKLE].z - startPos.z);
197 }
198 }
199 else if (posVect[NI_SDK_L_ANKLE].c>=m_confidence && crdVect[NI_SDK_L_ANKLE].c>0.0) {
200 m_ground_level = posVect[NI_SDK_L_ANKLE].z - startPos.z;
201 }
202 }
203
204 return m_is_detected;
205}
206
207
208
209void COpenNiWin::setMirroring(BOOL mirror)
210{
211 if (m_is_mirroring!=mirror) {
212 if (device!=NULL && device->context!=NULL) {
213 device->context->SetGlobalMirror(mirror);
214 }
215 }
216 m_is_mirroring = mirror;
217}
218
219
220//
221void COpenNiWin::setTiltMotor(int ang)
222{
223 if (m_use_motor && m_enable_motor) {
224 m_enable_motor = FALSE;
225 set_Tilt_Motor(ang); // Sleep(1000)
226 m_enable_motor = TRUE;
227 }
228}
229
230
231//
232BOOL COpenNiWin::startDetection(BOOL force_pose)
233{
234 clearJointsData();
235
236 float smooth = 0.0;
237 if (m_use_nite_smth) smooth = m_nite_smooth;
238 m_force_pose = force_pose;
239
240 BOOL ret = start_Detection(force_pose, m_profile, smooth);
241 if (ret) {
242 setLEDColor(NI_LED_BLINK_ORANGE);
243 }
244 else {
245 m_err_mesg = _T("COpenNiWin::startDetection(): ERROR: Maybe NITE is not installed.");
246 }
247
248 return ret;
249}
250
251
252
253BOOL COpenNiWin::stopDetection(void)
254{
255 BOOL ret = stop_Detection();
256 setLEDColor(NI_LED_GREEN);
257
258 return ret;
259}
260
261
262
263BOOL COpenNiWin::restartDetection(void)
264{
265 BOOL ret = stopDetection();
266 if (ret) ret = startDetection(m_force_pose);
267
268 return ret;
269}
270
271
272//
273// color is GRAPH_COLOR_BGRA
274//
275void COpenNiWin::makeDisplayImage()
276{
277 int index;
278 uByte* src = NULL;
279 uByte* ptr;
280
281 if (pViewData==NULL) return;
282
283 if (device->imageMD!=NULL && m_use_image) {
284 src = (uByte*)device->imageMD->RGB24Data();
285 }
286
287 //
288 if (src!=NULL) {
289 for (int j=0; j<pViewData->ysize; j++) {
290 int ls = j*m_image_scale*device->m_xsize; //outputMode.nXRes;
291
292 for(int i=0; i<pViewData->xsize; i++) {
293 int li = i*m_image_scale;
294 ptr = &(pViewData->point(i, j));
295 index = (ls + li)*3;
296 ptr[0] = src[index+2]; // B
297 ptr[1] = src[index+1]; // G
298 ptr[2] = src[index]; // R
299 ptr[3] = 0; // A
300 }
301 }
302 }
303
304 // No Camera Image
305 else {
306 for(int j=0; j<pViewData->ysize; j++) {
307 int ls = j*m_image_scale*device->m_xsize; //outputMode.nXRes;
308
309 for(int i=0; i<pViewData->xsize; i++) {
310 int li = i*m_image_scale;
311 ptr = &(pViewData->point(i, j));
312 ptr[0] = ptr[1] = ptr[2] = 224; // Gray Background
313 ptr[3] = 0;
314 }
315 }
316 }
317}
318
319
320//
321// color is GRAPH_COLOR_MONO16
322// 表示データは 8bit
323//
324void COpenNiWin::makeDisplayDepth(CExView* pview)
325{
326 if (pview==NULL) return;
327 pDepthData = &(pview->viewData);
328
329 const XnDepthPixel* src = NULL;
330 if (device->depth!=NULL && hasDepthData) {
331 src = device->depthMD->Data();
332 }
333 if (src==NULL) return;
334
335 //
336 uWord max = pview->cMax;
337 uWord min = pview->cMin;
338 //
339 uWord* wrk = (uWord*)malloc(sizeof(uWord)*pDepthData->ysize*pDepthData->xsize);
340
341 //
342 for (int j=0; j<pDepthData->ysize; j++) {
343 int jj = j*pDepthData->xsize;
344 int ls = j*m_depth_scale*device->m_xsize;
345
346 for (int i=0; i<pDepthData->xsize; i++) {
347 // Mirroring
348 int li = i*m_depth_scale;
349 if (!m_is_mirroring) li = device->m_xsize - li - 1;
350 //
351 int k = jj + i;
352 wrk[k] = (uWord)src[ls+li];
353 if (wrk[k]>max) wrk[k] = max;
354 else if (wrk[k]<min) wrk[k] = min;
355 }
356 }
357
358 //
359 float dif = (float)(max - min);
360 uByte* ptr = (uByte*)pDepthData->grptr;
361
362 if (dif!=0.0) {
363 for (int i=0; i<pDepthData->ysize*pDepthData->xsize; i++) {
364 ptr[i] = (uByte)((max - wrk[i])/dif*255);
365 }
366 }
367 else {
368 for (int i=0; i<pDepthData->ysize*pDepthData->xsize; i++) {
369 ptr[i] = (uByte)(255 - wrk[i]/256);
370 }
371 }
372 ::free(wrk);
373
374 return;
375}
376
377
378
379
381// Tracking Main
382//
383BOOL COpenNiWin::trackingJoints(BOOL use_rot_data)
384{
385 BOOL ret = FALSE;
386
387 if (hasUserData) {
388 // Lost Avatar の反応が鈍いので isDetectShadow を使う
389 isDetectShadow = detectShadow();
390
391 //
392 if ((int)tracking_user>0) {
393 XnBool istracking = skeleton->IsTracking(tracking_user);
394 if (!istracking || !isDetectShadow) {
395 clearAvatarDetected();
396 lostTrackingUser((int)tracking_user); // virtual
397 if (istracking) skeleton->StopTracking(tracking_user);
398 setDenyTrackingSearch(tracking_user);
399 tracking_user = (XnUserID)0;
400 }
401 }
402
403 if ((int)tracking_user==0) {
404 m_is_detected = FALSE;
405 tracking_user = getTrackingUser();
406 if ((int)tracking_user>0 && (int)tracking_user<=OPENNI_USERS_NUM) {
407 clearJointsData();
408 detectTrackingUser((int)tracking_user); // virtual
409 }
410 }
411
413 // Tracking
414 //
415 if ((int)tracking_user>0 && (int)tracking_user<=OPENNI_USERS_NUM) {
416 //
417 getJointsPosData(tracking_user);
418 if (use_rot_data) getJointsRotData(tracking_user);
419 //
420 if (m_is_detected) {
421 convertJointsData(); // virtual
422 //
423 backup2RingBuffer();
424 saveJointsData(); // virtual
425 loggingJointsData(); // virtual
426 //
427 paintShadow();
428 drawSkeleton(NiGetSkeletonColor((int)tracking_user), m_skeleton_line);
429 drawAddition(NiGetSkeletonColor((int)tracking_user), m_skeleton_line); // virtual
430 }
431 ret = TRUE;
432 }
433 }
434
435 else {
436 tracking_user = (XnUserID)0;
437 m_is_detected = FALSE;
438 }
439
440 //
441 if (ret!=m_is_tracking) {
442 m_is_tracking = ret;
443 if (ret) setLEDColor(NI_LED_RED);
444 else setLEDColor(NI_LED_BLINK_ORANGE);
445 }
446
447 return ret;
448}
449
450
451//
452// Calculate posVect, crdVect
453//
454void COpenNiWin::getJointsPosData(XnUserID uid)
455{
456 get_JointsPositionData(uid);
457
458 //
459 for (int j=1; j<OPENNI_JOINT_NUM; j++) {
460 XnVector3D pos = jointPosData[j];
461 posVect[j].set(-pos.Z/1000., pos.X/1000., pos.Y/1000., 0.0, jointPosConfidence[j]);
462 }
463
464 // Tracking Mode
465 if (m_profile==XN_SKEL_PROFILE_ALL) {
466 posVect[NI_SDK_PELVIS] = (posVect[NI_SDK_R_HIP] + posVect[NI_SDK_L_HIP])*0.5;
467 posVect[NI_SDK_PELVIS].c = Min(jointPosConfidence[NI_SDK_R_HIP], jointPosConfidence[NI_SDK_L_HIP]);
468 }
469 else if (m_profile==XN_SKEL_PROFILE_UPPER) {
470 posVect[NI_SDK_PELVIS] = 2.0*posVect[NI_SDK_TORSO] - posVect[NI_SDK_NECK];
471 posVect[NI_SDK_PELVIS].c = Min(jointPosConfidence[NI_SDK_TORSO], jointPosConfidence[NI_SDK_NECK]);
472 jointPosConfidence[NI_SDK_PELVIS] = (XnConfidence)posVect[NI_SDK_PELVIS].c;
473 }
474
475 //
476 set2DCoordinate();
477 checkBoneLength();
478 if (!m_is_detected) checkAvatarDetected();
479
480 //
481 currentPos = posVect[NI_SDK_PELVIS];
482 for (int j=0; j<OPENNI_JOINT_NUM; j++) {
483 posVect[j] = posVect[j] - startPos;
484 if (posVect[j].c<m_confidence || crdVect[j].c<0.0) posVect[j].c = -1.0;
485 }
486
487 checkGroundLevel();
488}
489
490
491//
492// Get rotQuat
493//
494void COpenNiWin::getJointsRotData(XnUserID uid)
495{
496 get_JointsRotationData(uid);
497
498 //
499 for (int j=1; j<OPENNI_JOINT_NUM; j++) {
500 XnMatrix3X3 rot = jointRotData[j];
501
502 double m11 = rot.elements[0];
503 double m12 = rot.elements[1];
504 double m13 = rot.elements[2];
505 double m21 = rot.elements[3];
506 double m31 = rot.elements[6];
507 double m32 = rot.elements[7];
508 double m33 = rot.elements[8];
509
510 Vector<double> eul = RotMatrixElements2EulerXYZ(m11, m12, m13, m21, m31, m32, m33);
511 Vector<double> vct(-eul.x, -eul.y, eul.z); // Mirror: vct(-eul.x, eul.y, -eul.z);
512 rotQuat[j].setEulerYZX(vct);
513 rotQuat[j].c = jointRotConfidence[j];
514
515 if (rotQuat[j].c<m_confidence || crdVect[j].c<0.0) rotQuat[j].c = -1.0;
516 }
517}
518
519
520
521
523//
524
525BOOL COpenNiWin::detectShadow(void)
526{
527 XnLabel label = 0;
528 XnLabel* lbl = NULL;
529
530 if (pViewData==NULL) return FALSE;;
531
532 if (getDevState()==NI_STATE_DETECT_EXEC && hasUserData) {
533 lbl = (XnLabel*)device->sceneMD->Data();
534 }
535 if (lbl==NULL) return FALSE;
536
537 for(int j=0; j<pViewData->ysize; j++) {
538 int ls = j*m_image_scale*device->m_xsize; //outputMode.nXRes;
539
540 for(int i=0; i<pViewData->xsize; i++) {
541 int li = i*m_image_scale;
542 //
543 label = lbl[ls+li];
544 if (label>0) {
545 if ((int)label==(int)tracking_user) return TRUE;
546 }
547 }
548 }
549
550 return FALSE;
551}
552
553
554
555void COpenNiWin::paintShadow(void)
556{
557 XnLabel label = 0;
558 XnLabel* lbl = NULL;
559 uByte* ptr;
560
561 if (pViewData==NULL) return;
562
563 if (getDevState()==NI_STATE_DETECT_EXEC && hasUserData) {
564 lbl = (XnLabel*)device->sceneMD->Data();
565 }
566 if (lbl==NULL) return;
567
568 //
569 for(int j=0; j<pViewData->ysize; j++) {
570 int ls = j*m_image_scale*device->m_xsize; // outputMode.nXRes;
571
572 for(int i=0; i<pViewData->xsize; i++) {
573 int li = i*m_image_scale;
574 //
575 label = lbl[ls+li];
576 if (label>0) {
577 ptr = &(pViewData->point(i, j));
578 NiSetUserColor(label, ptr, m_use_image);
579 }
580 }
581 }
582}
583
584
585
586void COpenNiWin::drawSkeleton(int col, int line)
587{
588 drawJointConnection(NI_SDK_HEAD, NI_SDK_NECK, col, line);
589 drawJointConnection(NI_SDK_NECK, NI_SDK_TORSO, col, line);
590 drawJointConnection(NI_SDK_TORSO, NI_SDK_PELVIS, col, line);
591
592 drawJointConnection(NI_SDK_NECK, NI_SDK_L_SHLDR, col, line);
593 drawJointConnection(NI_SDK_NECK, NI_SDK_R_SHLDR, col, line);
594
595 drawJointConnection(NI_SDK_L_SHLDR, NI_SDK_L_ELBOW, col, line);
596 drawJointConnection(NI_SDK_R_SHLDR, NI_SDK_R_ELBOW, col, line);
597 drawJointConnection(NI_SDK_L_ELBOW, NI_SDK_L_WRIST, col, line);
598 drawJointConnection(NI_SDK_R_ELBOW, NI_SDK_R_WRIST, col, line);
599
600 drawJointConnection(NI_SDK_PELVIS, NI_SDK_L_HIP, col, line);
601 drawJointConnection(NI_SDK_PELVIS, NI_SDK_R_HIP, col, line);
602 drawJointConnection(NI_SDK_L_HIP, NI_SDK_L_KNEE, col, line);
603 drawJointConnection(NI_SDK_R_HIP, NI_SDK_R_KNEE, col, line);
604 drawJointConnection(NI_SDK_L_KNEE, NI_SDK_L_ANKLE, col, line);
605 drawJointConnection(NI_SDK_R_KNEE, NI_SDK_R_ANKLE, col, line);
606}
607
608
609
610void COpenNiWin::drawJointConnection(int j1, int j2, int col, int line)
611{
612 if (pViewData==NULL) return;
613
614 MSGraph<unsigned int> vp;
615 vp.xs = pViewData->xsize;
616 vp.ys = pViewData->ysize;
617 vp.zs = 1;
618 vp.gp = (unsigned int*)pViewData->grptr;
619
620 if (crdVect[j1].c>0.0 && crdVect[j2].c>0.0) {
621 MSGraph_Line(vp, crdVect[j1].x, crdVect[j1].y, crdVect[j2].x, crdVect[j2].y, col);
622 for (int i=1; i<line; i++) {
623 MSGraph_Line(vp, crdVect[j1].x+i, crdVect[j1].y, crdVect[j2].x+i, crdVect[j2].y, col);
624 MSGraph_Line(vp, crdVect[j1].x-i, crdVect[j1].y, crdVect[j2].x-i, crdVect[j2].y, col);
625 MSGraph_Line(vp, crdVect[j1].x, crdVect[j1].y+i, crdVect[j2].x, crdVect[j2].y+i, col);
626 MSGraph_Line(vp, crdVect[j1].x, crdVect[j1].y-i, crdVect[j2].x, crdVect[j2].y-i, col);
627 }
628 }
629}
630
631
632
633void COpenNiWin::set2DCoordinate(void)
634{
635 for (int j=0; j<OPENNI_JOINT_NUM; j++) {
636 crdVect[j].init(-1.0);
637 }
638
639 //
640 if (device->depth!=NULL && pViewData!=NULL) {
641 //
642 for (int j=0; j<OPENNI_JOINT_NUM; j++) {
643 float cnfd;
644
645 if (j==NI_SDK_PELVIS) {
646 // Tracking Mode
647 if (m_profile==XN_SKEL_PROFILE_UPPER) {
648 cnfd = (float)Min(jointPosConfidence[NI_SDK_TORSO], jointPosConfidence[NI_SDK_NECK]);
649 }
650 else {
651 cnfd = (float)Min(jointPosConfidence[NI_SDK_R_HIP], jointPosConfidence[NI_SDK_L_HIP]);
652 }
653 }
654 else {
655 cnfd = (float)jointPosConfidence[j];
656 }
657
658 //
659 if (cnfd>=m_confidence) {
660 XnVector3D pos;
661
662 if (j==NI_SDK_PELVIS) {
663 if (m_profile==XN_SKEL_PROFILE_UPPER) {
664 pos.X = (XnFloat)(2.0*jointPosData[NI_SDK_TORSO].X - jointPosData[NI_SDK_NECK].X);
665 pos.Y = (XnFloat)(2.0*jointPosData[NI_SDK_TORSO].Y - jointPosData[NI_SDK_NECK].Y);
666 pos.Z = (XnFloat)(2.0*jointPosData[NI_SDK_TORSO].Z - jointPosData[NI_SDK_NECK].Z);
667 }
668 else {
669 pos.X = (XnFloat)((jointPosData[NI_SDK_R_HIP].X + jointPosData[NI_SDK_L_HIP].X)*0.5);
670 pos.Y = (XnFloat)((jointPosData[NI_SDK_R_HIP].Y + jointPosData[NI_SDK_L_HIP].Y)*0.5);
671 pos.Z = (XnFloat)((jointPosData[NI_SDK_R_HIP].Z + jointPosData[NI_SDK_L_HIP].Z)*0.5);
672 }
673 }
674 else {
675 pos = jointPosData[j];
676 }
677
678 XnPoint3D pt[1] = {pos};
679 device->depth->ConvertRealWorldToProjective(1, pt, pt);
680 int xs = (int)(pt[0].X/m_image_scale);
681 int ys = (int)(pt[0].Y/m_image_scale);
682
683 crdVect[j].x = xs;
684 crdVect[j].y = ys;
685 if (xs>0 && xs<pViewData->xsize && ys>0 && ys<pViewData->ysize) { // 縁(0) は除外
686 crdVect[j].c = 1.0;
687 }
688 }
689 }
690 }
691
692 return;
693}
694
695
696
697
699// Speech Platform
700// 作成中
701
702BOOL COpenNiWin::initSpeech(void)
703{
704 m_err_mesg = _T("");
705
706 if (audio==NULL) audio = new COpenNiAudio(NULL);
707
708 BOOL ret = audio->init(NULL);
709 if (!ret) m_err_mesg = _T("COpenNiWin::initSpeech(): ERROR: Audio Initialization Error!!");
710
711 //
712 if (ret) {
713 speech = makeSpeech();
714 WAVEFORMATEX format = audio->getAudioFormat();
715 IStream* stream = audio->getIStream();
716 ret = speech->init(stream, &format);
717 if (!ret) m_err_mesg = _T("COpenNiWin::initSpeech(): ERROR: Speech Initialization Error!!");
718 }
719
720 //
721 if (!ret) {
722 if (speech!=NULL) {
723 speech->free();
724 deleteNull(speech);
725 }
726 deleteNull(audio);
727 return FALSE;
728 }
729
730 return TRUE;
731}
732
733
734
735BOOL COpenNiWin::createSpeech(LPCTSTR lang, LPCTSTR grfile)
736{
737 m_err_mesg = _T("");
738
739 BOOL ret = TRUE;
740 if (speech==NULL) ret = initSpeech();
741
742 if (ret) {
743 ret = speech->create(lang);
744 if (!ret) m_err_mesg = _T("COpenNiWin::createSpeech(): ERROR: Speech Context Creation Error!! Perhaps, Language Pack is not installed.");
745 }
746 //
747 if (ret) {
748 ret = speech->load(grfile);
749 if (!ret) {
750 m_err_mesg = _T("COpenNiWin::createSpeech(): ERROR: Grammar File Loading Error!! File = ");
751 m_err_mesg += grfile;
752 }
753 }
754
755 //
756 if (!ret) return FALSE;
757 return TRUE;
758}
759
760
761
762BOOL COpenNiWin::startSpeech(float confidence)
763{
764 m_err_mesg = _T("");
765
766 if (audio==NULL || speech==NULL) {
767 m_err_mesg = _T("COpenNiWin::startSpeech(): ERROR: Audio or Speech Instance is/are NULL!!");
768 return FALSE;
769 }
770
771 BOOL ret = audio->startCapture();
772 if (!ret) m_err_mesg = _T("COpenNiWin::startSpeech(): ERROR: Audio Capture Starting Error!!");
773 //
774 if (ret) {
775 ret = speech->start(confidence);
776 if (!ret) {
777 audio->stopCapture();
778 m_err_mesg = _T("COpenNiWin::startSpeech(): ERROR: Speech Platform Starting Error!!");
779 }
780 }
781 //
782 if (!ret) {
783 if (m_err_mesg==_T("")) m_err_mesg = _T("COpenNiWin::startSpeech(): ERROR: Unknown Error!!");
784 return FALSE;
785 }
786
787 return TRUE;
788}
789
790
791
792void COpenNiWin::stopSpeech(void)
793{
794 if (speech!=NULL) {
795 speech->stop();
796 }
797 //
798 if (audio!=NULL) {
799 audio->stopCapture();
800 }
801
802 return;
803}
804
805
806
807void COpenNiWin::deleteSpeech(BOOL rls)
808{
809 DEBUG_INFO("COpenNiWin::deleteSpeech(): START");
810
811 if (speech!=NULL) {
812 stopSpeech();
813 //
815 if (rls) speech->free();
816 delete speech;
817 speech = NULL;
818 }
819
820 //
821 deleteNull(audio);
822
823 DEBUG_INFO("COpenNiWin::deleteSpeech(): END");
824 return;
825}
826
827
828#endif // ifdef ENABLE_OPENNI
int NI_SDK_R_KNEE
int NI_SDK_L_WRIST
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_KNEE
int NI_SDK_L_ANKLE
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
CString mbs2ts(char *str)
Definition WinTools.cpp:79
unsigned int NiGetSkeletonColor(int label)
Definition NiToolWin.cpp:45
void deleteNull(T *&ptr)
Definition WinTools.h:229