-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathREADME
29 lines (20 loc) · 1.08 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
Linux clone of MultiMultiTouchTouch aka Space Palette of Tim Thompson ( http://spacepalette.com ).
Use your Kinect to define 'virtual' touchpads and
send touch information in TUIO format. Look at the
wiki page for some screenshots.
Even on ARM platforms (I.e. beagleboard) are 30 fps reached.
Installation:
Call 'make' to
1. Install the dependencies
2. Compile and copy 3rd party libraries into lib subfolder
3. Build KinectGrid with CMake in 'build' subfolder
If step 1 (suited for debian based systems only) failes, try to install the dependencies manually
and call make again.
Known Problems:
Kinect sensor did not shutdown if KinectGrid terminated with Ctrl+C.
Solution: Press ESC in the application window or quit application over the webinterface.
Websocket did not work and terminal prints out
'[ERROR onion.c:385] Error accepting connection: Function not implemented'
Solution: Probably your kernel did not support accept4(...).
Add #undef SOCK_CLOEXEC just before the the #ifndef SOCK_CLOEXEC at 3rdparty/onion/src/onion.c:193
and recompile & reinstall the library.