0
votes

I am new to C# programming and have started building an WPF app using the Kinect. I have managed to track a skeleton and display each joints X & Y coordinates in text boxes, but i want to save all the data to one text file on my desktop for analysis. Is there a way to do this?

1

1 Answers

0
votes

Kinect Toolbox provides a mechanism to save the skeleton stream.

If you want to roll your own -- the data is just a bunch of objects, containing 3 points. Simply store the points, as they come in, to a List and then output the data to a file using XML Serialization.