1

I am new to C# programming and I am following the Kinect For Windows SDK from Channel9msdn and Microsoft Kinect Toolkit examples. My question is how do I obtain and display the joint angles for each joint?

Also, how do I display the coordinates of the joints?

I want to have these displayed when I am running the skeletal tracking.

Thanks in advance for any help.

user1773489
  • 45
  • 10

1 Answers1

0

A quick internet search...

How to calculate an angle from three points?

For displaying the text, you can either draw it directly to the display canvas or create one (or more) TextBlocks that you update the value of. I would probably suggest the TextBlocks, simply because they would be easier to work with.

Information on how to work with TextBlocks can be found in the MSDN development documentation, and all around.

Community
  • 1
  • 1
Nicholas Pappas
  • 10,439
  • 12
  • 54
  • 87