JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
OpenNiTool.cpp
Go to the documentation of this file.
1
7#include "OpenNiTool.h"
8#include "tools++.h"
9
10using namespace jbxl;
11
12
13#ifdef ENABLE_OPENNI
14
15
16COpenNiTool::COpenNiTool(void)
17{
18 device = NULL;
19 dev_backup = NULL;
20
21 tracking_user = 0;
22 tracking_deny = 0;
23
24 m_err_mesg = make_Buffer(LMESG);
25
26 clear_JointsData();
27}
28
29
30BOOL COpenNiTool::init(BOOL use_image)
31{
32 device = new COpenNiDevice();
33 BOOL ret = device->init(use_image);
34 if (ret) {
35 // default is mirror mode
36 if (device->context!=NULL) device->context->SetGlobalMirror(TRUE);
37 }
38 else {
39 copy_Buffer(&device->m_err_mesg, &m_err_mesg);
40 }
41
42 //
43 device->m_state = NI_STATE_DETECT_STOPPED;
44
45 return ret;
46}
47
48
49void COpenNiTool::free(void)
50{
51 delete_Device();
52
53 free_Buffer(&m_err_mesg);
54}
55
56
57void COpenNiTool::delete_Device(void)
58{
59 if (device!=NULL) {
60 delete(device);
61 device = NULL;
62 }
63 return;
64}
65
66
67void COpenNiTool::clear_JointsData(void)
68{
69 clear_JointsPosData();
70 clear_JointsRotData();
71}
72
73
74void COpenNiTool::clear_JointsPosData(void)
75{
76 memset(jointPosData, 0, sizeof(XnVector3D) *OPENNI_JOINT_NUM);
77 memset(jointPosConfidence, 0, sizeof(double)*OPENNI_JOINT_NUM);
78}
79
80
81void COpenNiTool::clear_JointsRotData(void)
82{
83 memset(jointRotData, 0, sizeof(XnMatrix3X3)*OPENNI_JOINT_NUM);
84 memset(jointRotConfidence, 0, sizeof(double)*OPENNI_JOINT_NUM);
85}
86
87
88
90// Joint Data
91
92void COpenNiTool::get_JointsPositionData(unsigned int nId)
93{
94 XnSkeletonJointPosition joint;
95 //memset(jointPosData, 0, sizeof(XnVector3D)*OPENNI_JOINT_NUM);
96
97 if (device->skeleton!=NULL) {
98 for (int j=1; j<OPENNI_JOINT_NUM; j++) {
99 device->skeleton->GetSkeletonJointPosition(nId, (XnSkeletonJoint)j, joint);
100 jointPosData[j] = joint.position;
101 jointPosConfidence[j] = joint.fConfidence;
102 }
103 }
104}
105
106
107void COpenNiTool::get_JointsRotationData(unsigned int nId)
108{
109 XnSkeletonJointOrientation joint;
110 //memset(jointRotData, 0, sizeof(XnMatrix3X3)*OPENNI_JOINT_NUM);
111
112 if (device->skeleton!=NULL) {
113 for (int j=1; j<OPENNI_JOINT_NUM; j++) {
114 device->skeleton->GetSkeletonJointOrientation(nId, (XnSkeletonJoint)j, joint);
115 jointRotData[j] = joint.orientation;
116 jointRotConfidence[j] = joint.fConfidence;
117 }
118 }
119}
120
121
122XnVector3D COpenNiTool::joint_PositionData(int j)
123{
124 XnVector3D vect;
125
126 if (j>=0 && j<OPENNI_JOINT_NUM) {
127 vect = jointPosData[j];
128 }
129 else {
130 memset(&vect, 0, sizeof(XnVector3D));
131 }
132 return vect;
133}
134
135
136XnMatrix3X3 COpenNiTool::joint_RotationData(int j)
137{
138 XnMatrix3X3 mtrx;
139
140 if (j>=0 && j<OPENNI_JOINT_NUM) {
141 mtrx = jointRotData[j];
142 }
143 else {
144 memset(&mtrx, 0, sizeof(XnMatrix3X3));
145 }
146 return mtrx;
147}
148
149
150double COpenNiTool::joint_PositionConfidence(int j)
151{
152 double cnfd = 0.0;
153
154 if (j>=0 && j<OPENNI_JOINT_NUM) {
155 cnfd = (double)jointPosConfidence[j];
156 }
157 return cnfd;
158}
159
160
161double COpenNiTool::joint_RotationConfidence(int j)
162{
163 double cnfd = 0.0;
164
165 if (j>=0 && j<OPENNI_JOINT_NUM) {
166 cnfd = (double)jointRotConfidence[j];
167 }
168 return cnfd;
169}
170
171
172
174// Start and Stop Detection (Reset)
175
176BOOL COpenNiTool::start_Detection(int profile, double smooth)
177{
178 if (device->m_state==NI_STATE_DETECT_EXEC) {
179 copy_s2Buffer("WARNING: COpenNiTool:start_Detection: detection is already executed", &m_err_mesg);
180 return FALSE;
181 }
182
183 device->m_state = NI_STATE_DETECT_STARTING;
184 clear_JointsData();
185 tracking_user = 0;
186 tracking_deny = 0;
187
188 BOOL ret = device->create_User();
189 if (ret) ret = device->setup_Tracking(profile, smooth);
190 if (ret) ret = device->setup_CallBacks();
191
192 if (!ret) {
193 device->m_state = NI_STATE_DETECT_STOPPING;
194 device->clear_Skeleton();
195 device->delete_User();
196 device->m_state = NI_STATE_DETECT_STOPPED;
197 copy_s2Buffer("ERROR: COpenNiTool:start_Detection: Myabe NITE is not installed!!", &m_err_mesg);
198 return FALSE;
199 }
200
201 device->m_state = NI_STATE_DETECT_EXEC;
202
203 return TRUE;
204}
205
206
207BOOL COpenNiTool::stop_Detection(void)
208{
209 if (device->m_state==NI_STATE_DETECT_STOPPED) {
210 copy_s2Buffer("WARNING: COpenNiTool:stop_Detection: detection is already stopped", &m_err_mesg);
211 return FALSE;
212 }
213
214 device->m_state = NI_STATE_DETECT_STOPPING;
215 Sleep(NI_STOP_WAIT_TIME);
216
217 device->clear_Tracking();
218 device->clear_CallBacks();
219 device->clear_Skeleton();
220 device->delete_User();
221
222 tracking_user = (unsigned int)0;
223 tracking_deny = (unsigned int)0;
224
225 device->m_state = NI_STATE_DETECT_STOPPED;
226
227 return TRUE;
228}
229
230
231unsigned int COpenNiTool::get_TrackingUser(void)
232{
233 XnUserID id = (unsigned int)0;
234
235 if (device->user!=NULL && device->skeleton!=NULL) {
236 device->nUsers = OPENNI_USERS_NUM;
237 device->user->GetUsers(device->dUsers, device->nUsers);
238
239 int start = 0;
240 if (tracking_deny!=0) {
241 for (int i=0; i<device->nUsers; i++) {
242 if (tracking_deny==device->dUsers[i]) {
243 start = i + 1;
244 break;
245 }
246 }
247 }
248 //
249 for (int i=0; i<device->nUsers; i++) {
250 int idx = (start + i) % device->nUsers;
251 if (device->skeleton->IsTracking(device->dUsers[idx])) {
252 id = device->dUsers[idx];
253 break;
254 }
255 }
256 }
257 return id;
258}
259
260
261void COpenNiTool::set_DenyTrackingSearch(unsigned int user)
262{
263 if ((int)user>0) tracking_deny = user;
264 else tracking_deny = 0;
265
266 return;
267}
268
269
270
272
273BOOL COpenNiTool::backupDevice(void)
274{
275 dev_backup = device;
276 device = new COpenNiDevice();
277
278 if (device==NULL) {
279 device = dev_backup;
280 dev_backup = NULL;
281 return FALSE;
282 }
283 return TRUE;
284}
285
286
287BOOL COpenNiTool::restoreDevice(void)
288{
289 if (dev_backup==NULL) return FALSE;
290
291 delete(device);
292 device = dev_backup;
293 dev_backup = NULL;
294 return TRUE;
295}
296
297
298#endif // ifdef ENABLE_OPENNI
#define OPENNI_USERS_NUM
Definition NiDevice.h:11
#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
OpenNI用 ツール ヘッダ
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++