This repository was archived by the owner on Jun 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkinect.c
More file actions
466 lines (389 loc) · 12.6 KB
/
kinect.c
File metadata and controls
466 lines (389 loc) · 12.6 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
456
457
458
459
460
461
462
463
464
465
466
/*
* This module provides the interface between libfreenect and
* nstream. This provides a higher level API for accessing a
* stream of frames from the Kinect device.
*/
#include "kinect.h"
#include "nstream.h"
#include <libfreenect.h>
#include <stdlib.h>
#include <stdio.h>
#include <pthread.h>
#include <string.h>
#include <assert.h>
#include <sched.h>
/* global stuff for the callbacks */
struct nstream_t *knt_rgb_nstm;
struct nstream_t *knt_depth_nstm;
/*
* Callback called by libfreenect each time the buffer is filled with a
* new RGB frame
*
* dev: filled with a pointer the the freenect device
* rgb: pointer to the RGB buffer
* timestamp: POSIX timestamp of the buffer
*
* not safe for multiple instances because nstm has to be global
*/
void knt_rgb_cb(freenect_device * dev, void *rgb, uint32_t timestamp)
{
struct nstream_t *nstm = knt_rgb_nstm;
struct timeval curtime;
struct timezone thistimezone;
/* got RGB callback */
/* printf("got RGB callback\n"); */
/* Do nothing if the stream isn't up */
if (nstm->state != NSTREAM_UP)
return;
/* lock mutex */
pthread_mutex_lock(&nstm->mutex);
/* Update timestamp: should we be using the provided one? */
/* gettimeofday(&curtime, &thistimezone); nstm->timestamp = curtime.tv_sec;
*/
nstm->timestamp = timestamp;
/* Swap buffers */
if (nstm->buf == nstm->buf0) {
nstm->buf = nstm->buf1;
freenect_set_video_buffer(dev, nstm->buf0);
} else {
nstm->buf = nstm->buf0;
freenect_set_video_buffer(dev, nstm->buf1);
}
/* unlock mutex */
pthread_mutex_unlock(&nstm->mutex);
/* call the new frame callback */
if (nstm->newframe != NULL) {
nstm->newframe(nstm, nstm->callbackarg);
}
return;
}
/*
* Callback called by libfreenect each time the buffer is filled with a
* new depth frame
*
* dev: filled with a pointer the the freenect device
* rgb: pointer to the depth buffer
* timestamp: POSIX timestamp of the buffer
*
* not safe for multiple instances because nstm has to be global
*/
void knt_depth_cb(freenect_device * dev, void *rgb, uint32_t timestamp)
{
struct nstream_t *nstm = knt_depth_nstm;
struct timeval curtime;
struct timezone thistimezone;
/* got depth callback */
/* Do nothing if the stream isn't up */
if (nstm->state != NSTREAM_UP)
return;
/* lock mutex */
pthread_mutex_lock(&nstm->mutex);
/* update timestamp: should we be using the provided one? */
/* gettimeofday(&curtime, &thistimezone); nstm->timestamp = curtime.tv_sec;
*/
nstm->timestamp = timestamp;
/* Swap buffers */
if (nstm->buf == nstm->buf0) {
nstm->buf = nstm->buf1;
freenect_set_depth_buffer(dev, nstm->buf0);
} else {
nstm->buf = nstm->buf0;
freenect_set_depth_buffer(dev, nstm->buf1);
}
/* unlock mutex */
pthread_mutex_unlock(&nstm->mutex);
/* call the new frame callback */
if (nstm->newframe != NULL) {
nstm->newframe(nstm, nstm->callbackarg);
}
return;
}
/*
* User calls this to start an RGB or depth stream. Should be called
* through the nstream_t struct
*
* stream: The nstream_t handle of the stream to start.
*/
int knt_startstream(struct nstream_t *stream)
{
struct knt_inst_t *inst = stream->ih;
struct sched_param param;
/* You can't start a stream that's already started */
if (stream->state != NSTREAM_DOWN)
return 1;
pthread_mutex_lock(&inst->threadrunning_mutex);
if (inst->threadrunning == 0) {
/* The main worker thread isn't running yet. Start it. */
inst->threadrunning = 1;
pthread_create(&inst->thread, NULL, knt_threadmain, inst);
pthread_detach(inst->thread);
param.sched_priority = 50;
assert(pthread_setschedparam(inst->thread, SCHED_RR, ¶m) == 0);
pthread_cond_wait(&inst->threadcond, &inst->threadrunning_mutex);
if (inst->threadrunning == 0) {
/* the kinect failed to initialize */
pthread_mutex_unlock(&inst->threadrunning_mutex);
return 1;
}
}
pthread_mutex_unlock(&inst->threadrunning_mutex);
stream->state = NSTREAM_UP;
/* Do the callback */
if (stream->streamstarting != NULL) {
stream->streamstarting(stream, stream->callbackarg);
}
return 0;
}
/*
* User calls this to stop the RGB stream. Note that RGB and depth streams
* have seperate stop functions, unlike start functions.
*
* stream: The nstream_t handle of the stream to stop.
*/
int knt_rgb_stopstream(struct nstream_t *stream)
{
struct knt_inst_t *inst = stream->ih;
if (stream->state != NSTREAM_UP)
return 1;
if (inst->depth->state != NSTREAM_UP) {
/* We're servicing no other streams, shut down the thread */
inst->threadrunning = 0;
}
stream->state = NSTREAM_DOWN;
/* Do the callback */
if (stream->streamstopping != NULL) {
stream->streamstopping(stream, stream->callbackarg);
}
return 0;
}
/*
* User calls this to stop the depth stream. Note that depth and depth streams
* have seperate stop functions, unlike start functions.
*
* stream: The nstream_t handle of the stream to stop
*/
int knt_depth_stopstream(struct nstream_t *stream)
{
struct knt_inst_t *inst = stream->ih;
if (stream->state != NSTREAM_UP)
return 1;
if (inst->rgb->state != NSTREAM_UP) {
/* We're servicing no other streams, shut down the thread */
inst->threadrunning = 0;
}
stream->state = NSTREAM_DOWN;
/* Do the callback */
if (stream->streamstopping != NULL) {
stream->streamstopping(stream, stream->callbackarg);
}
return 0;
}
/*
* Called by knt_threadmain, in the case of an error, to abort
* starting the thread.
*
* inst: The kinect instance pointer
*/
void knt_threadmain_abort(struct knt_inst_t *inst)
{
/* Don't need to do this anymore */
/*
if(inst->rgb->state != NSTREAM_DOWN){ inst->rgb->state = NSTREAM_DOWN;
if(inst->rgb->streamstopping){ inst->rgb->streamstopping(inst->rgb,
inst->rgb->callbackarg); } }
if(inst->depth->state != NSTREAM_DOWN){ inst->depth->state =
NSTREAM_DOWN; if(inst->depth->streamstopping){
inst->depth->streamstopping(inst->depth, inst->depth->callbackarg); } } */
inst->threadrunning = 0;
pthread_cond_broadcast(&inst->threadcond);
return;
}
/*
* Main thread function, initializes the kinect, and runs the
* libfreenect event loop.
*
* in: The optional argument to the thread. Contains the knt_inst_t*.
*/
void *knt_threadmain(void *in)
{
struct knt_inst_t *inst = in;
int error;
int ndevs;
freenect_context *f_ctx;
freenect_device *f_dev;
struct timeval curtime;
struct timezone thistimezone;
/* initialize libfreenect */
error = freenect_init(&f_ctx, NULL);
if (error != 0) {
fprintf(stderr, "failed to initialize libfreenect\n");
knt_threadmain_abort(inst);
pthread_exit(NULL);
}
ndevs = freenect_num_devices(f_ctx);
if (ndevs != 1) {
fprintf(stderr, "more/less than one kinect detected\n");
freenect_shutdown(f_ctx);
knt_threadmain_abort(inst);
pthread_exit(NULL);
}
error = freenect_open_device(f_ctx, &f_dev, 0);
if (error != 0) {
fprintf(stderr, "failed to open kinect device\n");
freenect_shutdown(f_ctx);
knt_threadmain_abort(inst);
pthread_exit(NULL);
}
freenect_set_video_callback(f_dev, knt_rgb_cb);
freenect_set_depth_callback(f_dev, knt_depth_cb);
error =
freenect_set_video_mode(f_dev,
freenect_find_video_mode
(FREENECT_RESOLUTION_MEDIUM,
FREENECT_VIDEO_RGB));
if (error != 0) {
fprintf(stderr, "failed to set video mode\n");
freenect_close_device(f_dev);
freenect_shutdown(f_ctx);
knt_threadmain_abort(inst);
pthread_exit(NULL);
}
error =
freenect_set_depth_mode(f_dev,
freenect_find_depth_mode
(FREENECT_RESOLUTION_MEDIUM,
FREENECT_DEPTH_11BIT));
if (error != 0) {
fprintf(stderr, "failed to set depth mode\n");
freenect_close_device(f_dev);
freenect_shutdown(f_ctx);
knt_threadmain_abort(inst);
pthread_exit(NULL);
}
/* Set the user buffer to buf0 */
pthread_mutex_lock(&inst->rgb->mutex);
inst->rgb->buf = inst->rgb->buf0;
pthread_mutex_unlock(&inst->rgb->mutex);
error = freenect_set_video_buffer(f_dev, inst->rgb->buf1);
if (error != 0) {
fprintf(stderr, "failed to set video buffer\n");
freenect_close_device(f_dev);
freenect_shutdown(f_ctx);
knt_threadmain_abort(inst);
pthread_exit(NULL);
}
/* Set the user buffer to buf0 */
pthread_mutex_lock(&inst->depth->mutex);
inst->depth->buf = inst->depth->buf0;
pthread_mutex_unlock(&inst->depth->mutex);
error = freenect_set_depth_buffer(f_dev, inst->depth->buf1);
if (error != 0) {
fprintf(stderr, "failed to set depth buffer\n");
freenect_close_device(f_dev);
freenect_shutdown(f_ctx);
knt_threadmain_abort(inst);
pthread_exit(NULL);
}
error = freenect_start_video(f_dev);
if (error != 0) {
fprintf(stderr, "failed to start video stream\n");
freenect_close_device(f_dev);
freenect_shutdown(f_ctx);
knt_threadmain_abort(inst);
pthread_exit(NULL);
}
error = freenect_start_depth(f_dev);
if (error != 0) {
fprintf(stderr, "failed to start depth stream\n");
freenect_close_device(f_dev);
freenect_shutdown(f_ctx);
knt_threadmain_abort(inst);
pthread_exit(NULL);
}
/* We initialized everything successfully */
pthread_cond_broadcast(&inst->threadcond);
/* Turn the LED red */
/* freenect_set_led(f_dev, LED_RED); */
/* Do the main loop */
while ((freenect_process_events(f_ctx) >= 0)
&& inst->threadrunning == 1) {
/* usleep(500); */
/* process events */
/* printf("processed event\n"); */
/* This doesn't work so well: */
/*
gettimeofday(&curtime, &thistimezone);
pthread_mutex_lock(&inst->depth->mutex); if( nst->rgb->state ==
NSTREAM_UP && inst->rgb->timestamp != 0 && inst->rgb->timestamp + 2
< curtime.tv_sec ){ printf("timestamp: %d\ncurrent time: %d\n",
inst->rgb->timestamp, curtime.tv_sec); printf("looks like we aren't
getting any frames, bailing out...\n"); break; }
pthread_mutex_unlock(&inst->depth->mutex); */
}
/* Clean up */
knt_rgb_stopstream(inst->rgb);
knt_depth_stopstream(inst->depth);
freenect_close_device(f_dev);
freenect_shutdown(f_ctx);
pthread_exit(NULL);
return NULL;
}
/* Initialize the kinect instance structs.
*
* Returns the knt_inst_t * with the two nstream_t structs initialized.
*/
struct knt_inst_t *knt_init()
{
struct knt_inst_t *inst;
int error;
inst = malloc(sizeof(struct knt_inst_t));
memset(inst, 0x00, sizeof(struct knt_inst_t));
/* initialize the thread running mutex */
error = pthread_mutex_init(&inst->threadrunning_mutex, NULL);
if (error != 0) {
free(inst);
return NULL;
}
/* initialize the pthread_cond object */
error = pthread_cond_init(&inst->threadcond, NULL);
if (error != 0) {
free(inst);
pthread_mutex_destroy(&inst->threadrunning_mutex);
return NULL;
}
inst->rgb =
nstream_init(640, 480, 3, knt_startstream, knt_rgb_stopstream, inst);
if (inst->rgb == NULL) {
free(inst);
return NULL;
}
knt_rgb_nstm = inst->rgb;
inst->depth =
nstream_init(640, 480, 2, knt_startstream, knt_depth_stopstream, inst);
if (inst->depth == NULL) {
free(inst);
nstream_destroy(inst->rgb);
return NULL;
}
knt_depth_nstm = inst->depth;
return inst;
}
/*
* Destroys the knt_inst_t struct (and it's elements), created by
* knt_init.
*
* inst: The pointer to the knt_inst_t struct to destroy.
*/
void knt_destroy(struct knt_inst_t *inst)
{
/* make sure the streams are stopped first */
inst->rgb->stopstream(inst->rgb);
inst->depth->stopstream(inst->depth);
/* free everything */
pthread_mutex_destroy(&inst->threadrunning_mutex);
pthread_cond_destroy(&inst->threadcond);
nstream_destroy(inst->rgb);
nstream_destroy(inst->depth);
free(inst);
return;
}