This is a tool that uses Azure kinect to record body tracking data to a CSV file.
- Install Azure kinect Sensor SDK and Body Tracking SDK.
- Download this tool. (→ Release page)
- Run
kinectSimpleBodyTrackingCSVRecorder.exe
.
The CSV file contains the following information.
There are 32 joints in total, each with three coordinates (x, y, z). Therefore, there are 96 rows in total.
See here for joint order and more information.
CSV format:
PELVIS.x, PELVIS.y, PELVIS.z, SPINE_NAVAL.x, ・・・ EAR_RIGHT.y, EAR_RIGHT.z
Also, be careful with the coordinate system. Azure kinect uses this.
This project uses some open source code from the following sources:
- Azure Kinect Sensor SDK
(MIT License. Copyright: Microsoft Corporation) - AKRecorder
(MIT License. Copyright: KoheiShoda)