point cloud
skeleton stuffs
json
camera c#
other languages java/c
kcnect 2.0
kinect version two for xbox one
http://www.gamestop.com/xbox-one/accessories/kinect-xbox-one/115986
windows side:
depth search, RGB
https://support.apple.com/en-us/HT204990
Create a GitHub repo
Point Clouds
https://openkinect.org/wiki/Main_Page
Proforma
http://proforma-audiovisual.tumblr.com/
http://proforma-audiovisual.tumblr.com/post/89962135769/notte-blu-2014-la-vela-livorno-av-kinect
http://www.bmva.org/bmvc/2009/Papers/Paper297/Paper297.pdf
https://scholar.google.com/citations?user=TSr7CpYAAAAJ&hl=en
http://newatlas.com/3d-models-via-webcam-proforma/13463/
https://www.geek.com/chips/proforma-create-3d-models-with-a-webcam-990081/
Photosynth
https://blogs.msdn.microsoft.com/photosynth/2017/02/06/microsoft-photosynth-has-been-shut-down/
https://forum.openframeworks.cc/t/stream-kinect-images-via-tcp/9803
https://github.com/ihart-mhc/ihart/blob/master/server/src/socket_handler.py
There are a few steps involved in using sockets:
1. Create the socket
2. Identify the socket (name it)
create the data packet
3. On the server, wait for a message
4. On the client, send a message
5. Send a response back to the client (optional)
6. Close the socket
As shown in the Figure,
• Create a socket using the socket() function;
• Send and receive data by means of the recvfrom() and sendto() functions.
• Create a socket with the socket() function;
• Bind the socket to an address using the bind() function;
• Send and receive data by means of recvfrom() and sendto().