Hi everyone,
i have recorded the skeleton data in to a xls file. in order to check the value is correct,i need to read out the data again and plot it into a stickfigure. anyone know how to do it or have the code for it?
i'm using C++ right now. and the format i record data is like head.x; head.y;head.z and so on for all the joints.so i think the way i should do is:
1,read the data out line by line, each line contends the value for all joints, so i think need a array to do it and i'm thinking to use ifsteam
2,joint x,y,z value to the one joint like what we get from
GetSkeletonJointPosition function.
3,us darw stickline function in stickfigure sample to plot the graph.
how ever,i have difficulty in the first 2 steps as i'm a newbie in C++ and kinect porgramming , can someone help me???