microsoft / Azure-Kinect-Sensor-SDK

A cross platform (Linux and Windows) user mode SDK to read data from your Azure Kinect device.
https://Azure.com/Kinect
MIT License
1.49k stars 619 forks source link

Code for Merging Skeletons #1517

Open vijayvuyyuru opened 3 years ago

vijayvuyyuru commented 3 years ago

Is there any code publicly available that shows how to merge multiple body tracks of the same body from different angles into 1 unified track? I have the calibration data necessary to get the transforms between multiple cameras. I am aware of using joint confidence to do this but I was hoping there was already code for this application.

37 commented 3 years ago

In case it's helpful, a good starting point might be bayesian methods like ekf / ukf trackers, ie: https://github.com/LCAS/bayestracking

You'll have to solve for streaming point data from each kinect and tranforming to a single global space first though.