-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathREADME
29 lines (19 loc) · 1.11 KB
/
README
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
=Proxynect=
© 2012 Robert Xiao <[email protected]>
==Description==
Proxynect runs a persistent daemon which controls a single device. Multiple subscribers using the proxynect library can connect to and control the device.
Proxynect allows multiple processes to use the same Kinect, and avoids certain issues related to repeated reinitialization of the Kinect.
==Daemon==
Run the daemon with
./proxydaemon [deviceindex]
If deviceindex is not specified, 0 is assumed. Press Ctrl+C to quit.
The proxydaemon tries to avoid running if another instance seems to be active. Add "--force" to the command-line if you want to override this (e.g. if the last instance did not shutdown properly).
==Library==
Use the resulting proxynect .so dynamically instead of libfreenect.
==Build==
This is built with the main cmake script.
This gives you a build/lib/proxynect/libfreenect.so that you dynamically link in instead of libfreenect.so.
You can call proxynect in front of your application to automatically force the proxynect library to be used, e.g.
proxynect glview
==Credits==
This library is based on the fakenect library by Brandyn White.