-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathopenni2.h
More file actions
455 lines (372 loc) · 10.8 KB
/
openni2.h
File metadata and controls
455 lines (372 loc) · 10.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
#ifndef OPENNI2_H
#define OPENNI2_H
#include "boost_python.h"
#include "enhanced_kinect/KinectProperty.h"
#include <OpenNI.h>
#include "wrapper_utils.h"
class VideoModeWrapper : private openni::VideoMode
{
public:
inline VideoModeWrapper()
{
openni::VideoMode::setFps(0);
openni::VideoMode::setResolution(0, 0);
openni::VideoMode::setPixelFormat((openni::PixelFormat)0);
}
inline VideoModeWrapper(const VideoModeWrapper & p)
: openni::VideoMode(p.getVideoModeConstRef())
{
}
inline VideoModeWrapper(const openni::VideoMode & p)
: openni::VideoMode(p)
{
}
inline bp::tuple getResolution() const
{
return bp::make_tuple(openni::VideoMode::getResolutionX(),
openni::VideoMode::getResolutionY());
}
inline void setResolution(int x, int y)
{
openni::VideoMode::setResolution(x, y);
}
inline int getFps() const
{
return openni::VideoMode::getFps();
}
inline void setFps(int fps)
{
openni::VideoMode::setFps(fps);
}
inline openni::PixelFormat getPixelFormat() const
{
return openni::VideoMode::getPixelFormat();
}
inline void setPixelFormat(openni::PixelFormat format)
{
openni::VideoMode::setPixelFormat(format);
}
protected:
friend class VideoStreamWrapper;
inline const openni::VideoMode & getVideoModeConstRef() const
{
return static_cast<const openni::VideoMode &>(*this);
}
};
class VideoFrameWrapper
{
public:
VideoFrameWrapper(const openni::VideoFrameRef & f = openni::VideoFrameRef());
inline const bp::object getData() const
{
return m_data;
}
inline const VideoModeWrapper getVideoMode() const
{
return m_videoMode;
}
inline bool isValid() const
{
return m_isValid;
}
inline int getWidth() const
{
return m_width;
}
inline int getHeight() const
{
return m_height;
}
inline openni::SensorType getSensorType() const
{
return m_sensorType;
}
inline uint64_t getTimestamp() const
{
return m_timestamp;
}
inline int getFrameIndex() const
{
return m_frameIndex;
}
inline bool getCroppingEnabled() const
{
return m_croppingEnabled;
}
inline int getCropOriginX() const
{
return m_cropOriginX;
}
inline int getCropOriginY() const
{
return m_cropOriginY;
}
private:
bool m_isValid;
bp::object m_data;
VideoModeWrapper m_videoMode;
int m_width;
int m_height;
openni::SensorType m_sensorType;
uint64_t m_timestamp;
int m_frameIndex;
bool m_croppingEnabled;
int m_cropOriginX;
int m_cropOriginY;
};
class DeviceInfoWrapper
{
public:
inline DeviceInfoWrapper(const openni::DeviceInfo & i)
: m_uri(i.getUri())
, m_vendor(i.getVendor())
, m_name(i.getName())
, m_usbVendorId(i.getUsbVendorId())
, m_usbProductId(i.getUsbProductId())
{
}
inline std::string getUri() const
{
return m_uri;
}
inline std::string getVendor() const
{
return m_vendor;
}
inline std::string getName() const
{
return m_name;
}
inline uint16_t getUsbVendorId() const
{
return m_usbVendorId;
}
inline uint16_t getUsbProductId() const
{
return m_usbProductId;
}
private:
const std::string m_uri;
const std::string m_vendor;
const std::string m_name;
const uint16_t m_usbVendorId;
const uint16_t m_usbProductId;
};
class SensorInfoWrapper
{
public:
inline SensorInfoWrapper(const openni::SensorInfo * s)
{
if(s)
{
m_type = s->getSensorType();
const auto & videoModes = s->getSupportedVideoModes();
for(int i = 0; i < videoModes.getSize(); i++)
m_videoModes.append(VideoModeWrapper(videoModes[i]));
}
else
m_type = (openni::SensorType)-1;
}
inline openni::SensorType getSensorType() const
{
return m_type;
}
inline bp::list getSupportedVideoModes() const
{
return m_videoModes;
}
private:
openni::SensorType m_type;
bp::list m_videoModes;
};
class VideoStreamWrapper;
class PlaybackControlWrapper : private openni::PlaybackControl
{
public:
inline PlaybackControlWrapper(openni::PlaybackControl * p)
: openni::PlaybackControl(*p)
{
}
inline bool isValid() const
{
return openni::PlaybackControl::isValid();
}
inline float getSpeed() const
{
return openni::PlaybackControl::getSpeed();
}
inline openni::Status setSpeed(float speed)
{
return openni::PlaybackControl::setSpeed(speed);
}
inline bool getRepeatEnabled() const
{
return openni::PlaybackControl::getRepeatEnabled();
}
inline openni::Status setRepeatEnabled(bool repeat)
{
return openni::PlaybackControl::setRepeatEnabled(repeat);
}
openni::Status seek(const VideoStreamWrapper & stream, int frameIndex);
int getNumberOfFrames(const VideoStreamWrapper & stream) const;
};
class DeviceWrapper : private openni::Device
{
public:
inline DeviceWrapper()
{
}
openni::Status open(const bp::object & uri = bp::object());
inline void close()
{
ScopedGILRelease release_gil;
openni::Device::close();
}
inline const DeviceInfoWrapper getDeviceInfo() const
{
return DeviceInfoWrapper(openni::Device::getDeviceInfo());
}
inline bool hasSensor(openni::SensorType sensorType)
{
return openni::Device::hasSensor(sensorType);
}
inline const bp::object getSensorInfo(openni::SensorType sensorType)
{
const openni::SensorInfo * si = openni::Device::getSensorInfo(sensorType);
if(si)
return bp::object(SensorInfoWrapper(si));
else
return bp::object();
}
inline bp::object getPlaybackControl()
{
openni::PlaybackControl * pc = openni::Device::getPlaybackControl();
if(pc)
return bp::object(PlaybackControlWrapper(pc));
else
return bp::object();
}
inline bool isImageRegistrationModeSupported(openni::ImageRegistrationMode mode) const
{
return openni::Device::isImageRegistrationModeSupported(mode);
}
inline openni::ImageRegistrationMode getImageRegistrationMode() const
{
return openni::Device::getImageRegistrationMode();
}
inline openni::Status setImageRegistrationMode(openni::ImageRegistrationMode mode)
{
return openni::Device::setImageRegistrationMode(mode);
}
inline bool isValid() const
{
return openni::Device::isValid();
}
inline bool isFile() const
{
return openni::Device::isFile();
}
inline openni::Status setDepthColorSyncEnabled(bool isEnabled)
{
return openni::Device::setDepthColorSyncEnabled(isEnabled);
}
inline bool getDepthColorSyncEnabled()
{
return openni::Device::getDepthColorSyncEnabled();
}
inline bool isCommandSupported(int commandId) const
{
return openni::Device::isCommandSupported(commandId);
}
inline bool isPropertySupported(int propertyId) const
{
return openni::Device::isPropertySupported(propertyId);
}
public: // enhanced Kinect support
inline bool isNearModeSupported() const
{
return openni::Device::isPropertySupported(KINECT_DEPTH_PROPERTY_NEAR_MODE);
}
inline bool isCameraElevationSupported() const
{
return openni::Device::isPropertySupported(KINECT_DEVICE_PROPERTY_CAMERA_ELEVATION);
}
inline bool isAccelerometerSupported() const
{
return openni::Device::isPropertySupported(KINECT_DEVICE_PROPERTY_ACCELEROMETER);
}
inline openni::Status setNearMode(bool nearMode)
{
ScopedGILRelease release_gil;
return openni::Device::setProperty<bool>(KINECT_DEPTH_PROPERTY_NEAR_MODE, nearMode);
}
inline bp::object getNearMode()
{
bool data;
openni::Status rc;
{
ScopedGILRelease release_gil;
rc = openni::Device::getProperty<bool>(KINECT_DEPTH_PROPERTY_NEAR_MODE , &data);
}
if(rc != openni::STATUS_OK)
return bp::object();
else
return bp::object(data);
}
inline openni::Status setCameraElevation(long angle)
{
ScopedGILRelease release_gil;
return openni::Device::setProperty<long>(KINECT_DEVICE_PROPERTY_CAMERA_ELEVATION, angle);
}
inline bp::object getCameraElevation()
{
long data;
openni::Status rc;
{
ScopedGILRelease release_gil;
rc = openni::Device::getProperty<long>(KINECT_DEVICE_PROPERTY_CAMERA_ELEVATION, &data);
}
if(rc != openni::STATUS_OK)
return bp::object();
else
return bp::object(data);
}
// The accelerometer reading is returned as a 3-D vector pointing
// in the direction of gravity (the floor on a non-accelerating
// sensor). This 3-D vector is returned as a Vector4 (x, y, z, w)
// with the w value always set to 0.0. The coordinate system is
// centered on the sensor, and is a right-handed coordinate system
// with the positive z in the direction the sensor is pointing at.
// The vector is in gravity units (g), or 9.81m/s^2. The default
// sensor rotation (horizontal, level placement) is represented by
// the (x, y, z, w) vector whose value is (0, -1.0, 0, 0).
inline bp::object getAccelerometerReading()
{
KVector4 data;
openni::Status rc;
{
ScopedGILRelease release_gil;
rc = openni::Device::getProperty<KVector4>(KINECT_DEVICE_PROPERTY_ACCELEROMETER, &data);
}
if(rc != openni::STATUS_OK)
return bp::object();
else
return bp::make_tuple(data.x, data.y, data.z);
}
protected:
friend class VideoStreamWrapper;
friend class HandTrackerWrapper;
friend class UserTrackerWrapper;
inline openni::Device * getDevicePointer()
{
return &static_cast<Device &>(*this);
}
inline const openni::Device & getDeviceConstRef() const
{
return static_cast<const Device &>(*this);
}
private:
DeviceWrapper(const DeviceWrapper &);
};
void export_openni2();
#endif // OPENNI2_H