Friends asked me to help him on a project, and attempting to get a sense for how easy it will be using the Kinect platform to get body positions data using the .NET platform. For example, does Kinect just give a raw datastream of movements within the range of the sensors, or does it have the option to use a "smart" datastream that IDs people, elements of a person, and position changes of people/elements.

share|improve this question

feedback

2 Answers

up vote 5 down vote accepted

Every skeleton that is tracked has its own uniq ID. From skeleton you can get position (axis x,y,z) of every joint that is tracked. It`s not a simple datastream but complex set of data

share|improve this answer
Awesome, thanks! Using the keywords present in your answer I was able to find this video "Skeletal Tracking Fundamentals" – blunders Aug 11 at 21:37
You broke the 1k rep mark! – Outlaw Lemur Aug 13 at 17:05
@OutlawLemur yep :) – Fixus Aug 13 at 19:22
feedback

I know this has already been answered, but I just wanted to point out that if you see my answer on Kinect user Detection, you can also use the PlayerIndex which JuergeonD also explains on Kinect SDK player detection. Hope this helps!

share|improve this answer
feedback

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.