MarekKowalski / LiveScan3D

LiveScan3D is a system designed for real time 3D reconstruction using multiple Azure Kinect or Kinect v2 depth sensors simultaneously at real time speed.
MIT License
749 stars 202 forks source link

Skeleton handling #3

Open MarekKowalski opened 8 years ago

MarekKowalski commented 8 years ago

It would be very useful to include skeleton handling this would allow for:

MarekKowalski commented 8 years ago

Skeletons are now partially implemented, it is possible to:

I am currently a bit busy working on other things so I am not pushing this forward. If anyone is interested in having more skeleton functionality, let me know what you need and I'll see what can be done.

percramer commented 8 years ago

Hi,

well what i would be really interested in is tracking multiple people in a room. So just the skeletons is fine, but especially also what they are looking at. I don't know if it is already possible to extract that data?

MarekKowalski commented 8 years ago

Hi,

The Kinect v2 SDK does provide orientation of all of the joints including head. I don't know how accurate the measurements are however. The other thing is that those orientations are currently not transmitted to the server.

The only skeleton data that is transmitted are the locations of the joints and their states (whether a joint is tracked or not). In order to start working with joint orientations you would have to add them to the data that is transmitted to the server, which should be fairly easy.

Marek