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