0

是否有任何软件可以直接从 kinect 获取 BVH 数据?我在网上搜索并找到了 Kinect BVH MoCap(http://tech.integrate.biz/kinect_mocap.htm),但它对我不起作用。

4

1 回答 1

0

No. There is no built in mechanism to save Kinect data at all - no matter what format you want it in. The Kinect Studio does save off stream data, but I've not looked at the files to see what they look like internally.

You could look into the Kinect Toolbox, which provides functions to save off any of the 3 streams to a file. You can save the file and then manipulate it as necessary, perhaps write a parser to translate the data. Alternatively, you could manipulate the data before you save it off.

You could also write your own parser. The Skeleton objects are serializable, which means you could save them to a List (or some other array type object) along with a time stamp. When you are ready to save to the file, serialize the List and you will get a standard XML dump of the List and the Skeleton objects inside. Again, you could write a function that just translate it into the proper format before saving it as well.

于 2013-04-18T14:10:04.827 回答