JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
OpenNi2Tool.cpp
Go to the documentation of this file.
1
7#include "OpenNi2Tool.h"
8#include "tools++.h"
9
10
11#ifdef ENABLE_OPENNI2
12
13
14using namespace jbxl;
15
16
17COpenNiTool::COpenNiTool(void)
18{
19 device = NULL;
20 dev_backup = NULL;
21
22 tracking_user = 0;
23 tracking_deny = 0;
24
25 m_err_mesg = make_Buffer(LMESG);
26
27 clear_JointsData();
28}
29
30
31BOOL COpenNiTool::init(BOOL use_image)
32{
33 device = new COpenNi2Device();
34 BOOL ret = device->init(use_image);
35 if (ret) {
36 // default is mirror mode
37 setGlobalMirror(TRUE);
38 }
39 else {
40 copy_Buffer(&device->m_err_mesg, &m_err_mesg);
41 }
42
43 //
44 device->m_state = NI_STATE_DETECT_STOPPED;
45
46 return ret;
47}
48
49
50void COpenNiTool::free(void)
51{
52 delete_Device();
53
54 free_Buffer(&m_err_mesg);
55}
56
57
58void COpenNiTool::delete_Device(void)
59{
60 if (device!=NULL) {
61 delete(device);
62 device = NULL;
63 }
64 return;
65}
66
67
68void COpenNiTool::clear_JointsData(void)
69{
70 clear_JointsPosData();
71 clear_JointsRotData();
72}
73
74
75void COpenNiTool::clear_JointsPosData(void)
76{
77 memset(jointPosData, 0, sizeof(XnVector3D) *OPENNI_JOINT_NUM);
78 memset(jointPosConfidence, 0, sizeof(double)*OPENNI_JOINT_NUM);
79}
80
81
82void COpenNiTool::clear_JointsRotData(void)
83{
84 memset(jointRotData, 0, sizeof(XnMatrix3X3)*OPENNI_JOINT_NUM);
85 memset(jointRotConfidence, 0, sizeof(double)*OPENNI_JOINT_NUM);
86}
87
88
89nite::UserData* COpenNiTool::get_Avatar(unsigned int id)
90{
91 static nite::UserData avatar;
92
93 if (device!=NULL && device->user!=NULL) {
94 const nite::Array<nite::UserData>& avatars = device->userFrame.getUsers();
95 for (int i=0; i<avatars.getSize(); i++) {
96 avatar = avatars[i];
97 if (id==(unsigned int)avatar.getId()) {
98 return &avatar;
99 break;
100 }
101 }
102 }
103
104 return NULL;
105}
106
107
108
110// Joint Data
111
112void COpenNiTool::get_JointsPositionData(unsigned int nId)
113{
114 nite::UserData* avatar = get_Avatar(nId);
115 if (avatar==NULL) {
116 clear_JointsPosData();
117 return;
118 }
119
120 const nite::Skeleton& skeelton = avatar->getSkeleton();
121
122 if (skeelton.getState()==nite::SKELETON_TRACKED) {
123 for (int j=1; j<OPENNI_JOINT_NUM; j++) {
124 const nite::SkeletonJoint& joint = skeelton.getJoint((nite::JointType)(j-1));
125 const nite::Point3f& position = joint.getPosition();
126 jointPosData[j].X = position.x;
127 jointPosData[j].Y = position.y;
128 jointPosData[j].Z = position.z;
129 jointPosConfidence[j] = joint.getPositionConfidence();
130 }
131 }
132}
133
134
135void COpenNiTool::get_JointsRotationData(unsigned int nId)
136{
137 memset(jointRotData, 0, sizeof(XnMatrix3X3)*OPENNI_JOINT_NUM);
138 memset(jointRotConfidence, 0, sizeof(double)*OPENNI_JOINT_NUM);
139
140 /*
141 XnSkeletonJointOrientation joint;
142 //memset(jointRotData, 0, sizeof(XnMatrix3X3)*OPENNI_JOINT_NUM);
143
144 if (device->skeleton!=NULL) {
145 for (int j=1; j<OPENNI_JOINT_NUM; j++) {
146 device->skeleton->GetSkeletonJointOrientation(nId, (XnSkeletonJoint)j, joint);
147 jointRotData[j] = joint.orientation;
148 jointRotConfidence[j] = joint.fConfidence;
149 }
150 }
151 */
152}
153
154
155XnVector3D COpenNiTool::joint_PositionData(int j)
156{
157 XnVector3D vect;
158
159 if (j>=0 && j<OPENNI_JOINT_NUM) {
160 vect = jointPosData[j];
161 }
162 else {
163 memset(&vect, 0, sizeof(XnVector3D));
164 }
165 return vect;
166}
167
168
169XnMatrix3X3 COpenNiTool::joint_RotationData(int j)
170{
171 XnMatrix3X3 mtrx;
172
173 if (j>=0 && j<OPENNI_JOINT_NUM) {
174 mtrx = jointRotData[j];
175 }
176 else {
177 memset(&mtrx, 0, sizeof(XnMatrix3X3));
178 }
179 return mtrx;
180}
181
182
183double COpenNiTool::joint_PositionConfidence(int j)
184{
185 double cnfd = 0.0;
186
187 if (j>=0 && j<OPENNI_JOINT_NUM) {
188 cnfd = (double)jointPosConfidence[j];
189 }
190
191 return cnfd;
192}
193
194
195double COpenNiTool::joint_RotationConfidence(int j)
196{
197 double cnfd = 0.0;
198
199 if (j>=0 && j<OPENNI_JOINT_NUM) {
200 cnfd = (double)jointRotConfidence[j];
201 }
202
203 return cnfd;
204}
205
206
207
209// Start and Stop Detection (Reset)
210
211BOOL COpenNiTool::start_Detection(int profile, double smooth)
212{
213 if (device->m_state==NI_STATE_DETECT_EXEC) {
214 copy_s2Buffer("WARNING: COpenNiTool:start_Detection detection is already executed", &m_err_mesg);
215 return FALSE;
216 }
217
218 device->m_state = NI_STATE_DETECT_STARTING;
219 clear_JointsData();
220 tracking_user = 0;
221 tracking_deny = 0;
222
223 BOOL ret = device->create_User();
224 if (ret) ret = device->setup_Tracking(profile, smooth);
225
226 if (!ret) {
227 device->m_state = NI_STATE_DETECT_STOPPING;
228 device->delete_User();
229 device->m_state = NI_STATE_DETECT_STOPPED;
230 copy_s2Buffer("ERROR: COpenNiTool:start_Detection: Myabe NITE is not installed!!", &m_err_mesg);
231 return FALSE;
232 }
233 device->m_state = NI_STATE_DETECT_EXEC;
234
235 return TRUE;
236}
237
238
239BOOL COpenNiTool::stop_Detection(void)
240{
241 if (device->m_state==NI_STATE_DETECT_STOPPED) {
242 copy_s2Buffer("WARNING: COpenNiTool:stop_Detection: detection is already stopped", &m_err_mesg);
243 return FALSE;
244 }
245
246 device->m_state = NI_STATE_DETECT_STOPPING;
247 Sleep(NI_STOP_WAIT_TIME);
248 device->delete_User();
249
250 tracking_user = 0;
251 tracking_deny = 0;
252
253 device->m_state = NI_STATE_DETECT_STOPPED;
254
255 return TRUE;
256}
257
258
259unsigned int COpenNiTool::get_TrackingUser(void)
260{
261 unsigned int id = 0;
262
263 if (device!=NULL && device->user!=NULL) {
264 const nite::Array<nite::UserData>& avatars = device->userFrame.getUsers();
265
266 int start = 0;
267 if (tracking_deny!=0) {
268 for (int i=0; i<avatars.getSize(); i++) {
269 const nite::UserData& avatar = avatars[i];
270 if (tracking_deny==(unsigned int)avatar.getId()) {
271 start = i + 1;
272 break;
273 }
274 }
275 }
276 //
277 for (int i=0; i<avatars.getSize(); i++) {
278 int idx = (start + i) % avatars.getSize();
279 const nite::UserData& avatar = avatars[idx];
280 if (avatar.isNew()) {
281 nite::Status nc = device->user->startSkeletonTracking(avatar.getId());
282 if (nc==nite::STATUS_OK) id = (unsigned int)avatar.getId();
283 break;
284 }
285 else if (!avatar.isLost()) {
286 id = (unsigned int)avatar.getId();
287 break;
288 }
289 }
290 }
291 return id;
292}
293
294
295void COpenNiTool::set_DenyTrackingSearch(unsigned int user)
296{
297 if ((int)user>0) tracking_deny = user;
298 else tracking_deny = 0;
299
300 return;
301}
302
303
304
306
307BOOL COpenNiTool::backupDevice(void)
308{
309 dev_backup = device;
310 device = new COpenNi2Device();
311
312 if (device==NULL) {
313 device = dev_backup;
314 dev_backup = NULL;
315 return FALSE;
316 }
317 return TRUE;
318}
319
320
321BOOL COpenNiTool::restoreDevice(void)
322{
323 if (dev_backup==NULL) return FALSE;
324
325 delete(device);
326 device = dev_backup;
327 dev_backup = NULL;
328 return TRUE;
329}
330
331
332#endif // ifdef ENABLE_OPENNI2
#define NI_STOP_WAIT_TIME
Definition NiDevice.h:47
#define NI_STATE_DETECT_EXEC
Definition NiDevice.h:42
#define NI_STATE_DETECT_STARTING
Definition NiDevice.h:41
#define NI_STATE_DETECT_STOPPED
Definition NiDevice.h:40
#define NI_STATE_DETECT_STOPPING
Definition NiDevice.h:43
OpenNI2用 ツール ヘッダ
Buffer make_Buffer(int sz)
Buffer型変数のバッファ部をつくり出す.
Definition buffer.cpp:71
void free_Buffer(Buffer *buf)
Buffer型変数のバッファ部を解放する
Definition buffer.cpp:128
int copy_Buffer(Buffer *src, Buffer *dst)
Buffer型変数 srcから dstへバッファをコピーする.
Definition buffer.cpp:315
#define copy_s2Buffer(src, dst)
copy_b2Buffer()
Definition buffer.h:108
#define LMESG
Definition common.h:148
#define TRUE
Definition common.h:226
#define FALSE
Definition common.h:223
Definition Brep.h:29
ツールライブラリ ヘッダ for C++