JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
OpenNi2Win.h
Go to the documentation of this file.
1#pragma once
2
3#ifdef ENABLE_OPENNI
4
5#include "OpenNiTool.h"
6#include "NiToolWin.h"
7//#include "WinAudioTool.h"
8#include "OpenNiAudio.h"
9
10#include "ExView.h"
11#include "Rotation.h"
12#include "RingBuffer.h"
13
14#include "NiSpeech.h"
15
16// Lib
17#ifdef WIN64
18 #pragma comment(lib, "XnVNITE64_1_5_2.lib")
19 #pragma comment(lib, "OpenNI64.lib")
20#else
21 #pragma comment(lib, "XnVNITE_1_5_2.lib")
22 #pragma comment(lib, "OpenNI.lib")
23#endif
24
25
26//
27namespace jbxwl {
28
29
30class COpenNiWin : public COpenNiTool
31{
32public:
33 COpenNiWin(void);
34 virtual ~COpenNiWin(void) { free();}
35
36 COpenNiAudio* audio;
37 CNiSpeech* speech;
38
39 CString m_err_mesg;
40
41 int m_image_scale;
42 int m_depth_scale;
43 int m_skeleton_line;
44
45 BOOL m_is_tracking;
46 BOOL m_is_detected;
47 BOOL m_is_mirroring;
48
49 BOOL m_use_image;
50 BOOL m_use_led;
51 BOOL m_use_motor;
52 BOOL m_use_face;
53 BOOL m_use_speech;
54
55 BOOL m_enable_face;
56 BOOL m_enable_speech;
57 BOOL m_enable_motor;
58
59 BOOL m_use_nite_smth;
60 BOOL m_force_pose;
61
62 int m_profile;
63 float m_confidence;
64 float m_nite_smooth;
65 double m_ground_level;
66
67public:
68 ExCmnHead* pViewData;
69 ExCmnHead* pDepthData;
70
71 BOOL hasDepthData;
72 BOOL hasUserData;
73 BOOL isDetectShadow;
74 BOOL isDetectFace;
75
76public:
77 BOOL init(void);
78 void free(void);
79
80 CString get_err_message(void);
81
82public:
83 //
84 void deleteDevice(void) { delete_Device();}
85 void clearJointsData(void);
86 void clearAvatarDetected(void);
87 BOOL checkAvatarDetected(void);
88
89
90 BOOL openUSBDevice(void) { return open_USB_Device();}
91 void closeUSBDevice(void) { close_USB_Device();}
92 void setLEDColor(int col) { if (m_use_led) set_LED_Color(col);}
93 void setTiltMotor(int ang);
94
95 void setMirroring(BOOL mirror);
96 int getDevState(void) { return m_state;}
97
98 BOOL startDetection(BOOL force_pose);
99 BOOL stopDetection(void);
100 BOOL restartDetection(void);
101
102 int getTrackingUser(void) { return get_TrackingUser();}
103 void setDenyTrackingSearch(XnUserID user) { set_DenyTrackingSearch(user);}
104
105 //
106 void getJointsPosData(XnUserID uid);
107 void getJointsRotData(XnUserID uid);
108
109 //
110 void makeDisplayImage(void);
111 void makeDisplayDepth(CExView* pview);
112 BOOL trackingJoints(BOOL use_rot_data);
113
114 //
115 BOOL detectShadow(void);
116 void paintShadow(void);
117 void drawSkeleton(int col, int line);
118 void drawJointConnection(int j1, int j2, int col, int line);
119 void set2DCoordinate(void);
120
121 //
122 BOOL initRingBuffer(void);
123 void freeRingBuffer(void);
124 void clearRingBuffer(void);
125 void backup2RingBuffer(void);
126
127public:
128 // Face
129// Quaternion getFaceRotation(void) {};
130
131public:
132 // Speech  作成中
133 BOOL initSpeech(void);
134 BOOL createSpeech(LPCTSTR lang, LPCTSTR grfile);
135 BOOL startSpeech(float confidence);
136 void stopSpeech(void);
137 void deleteSpeech(BOOL rls=TRUE); // rls: メンバをリリースするか?
138
139 void setSpeechConfidence(float confd) { if (speech!=NULL) speech->setConfidence(confd);}
140
141 virtual CNiSpeech* makeSpeech(void) { CNiSpeech* spch = new CNiSpeech(); return spch;}
142
143public:
144 virtual void saveJointsData(void) {}
145 virtual void loggingJointsData(void) {}
146
147 virtual void checkBoneLength(void) {}
148 virtual void checkGroundLevel(void) {}
149
150 virtual void convertJointsData(void) {}
151 virtual void drawAddition(int col, int line) {}
152
153 virtual void lostTrackingUser(int uid) {}
154 virtual void detectTrackingUser(int uid) {}
155
156protected:
157 void setDevState(int state) { m_state = state;}
158
159public:
160 // Data
161 Vector<double> startPos;
162 Vector<double> currentPos;
163
164 Vector<double> posVect[OPENNI_JOINT_NUM];
165 Quaternion rotQuat[OPENNI_JOINT_NUM];
166 Vector<int> crdVect[OPENNI_JOINT_NUM]; // for 2D Image
167
168 double jntAngl[OPENNI_JOINT_NUM]; // angle between joints.
169
170 CRingBuffer posRing[OPENNI_JOINT_NUM];
171 CRingBuffer rotRing[OPENNI_JOINT_NUM];
172};
173
174
175} // namespace
176
177
178#endif
Speech Platform クラス ヘッダ