Skip to content

A prototype implementation in python of the paper "Cross-View Tracking for Multi-Human 3D Pose Estimation at over 100 FPS ", with inverse kinematics and bone length optimziation

License

Notifications You must be signed in to change notification settings

khanhha/multiview_motion_capture

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cross view tracking and inverse kinematics

This is a prototype implementation in python of the paper "Cross-View Tracking for Multi-Human 3D Pose Estimation at over 100 FPS ".

In addition to the original ideas from the paper, the implementation also includes

  • a temporal inverse kinematics solver that transform 3d triangulated points into joint angles
  • a temporal bone length optimization.

Instead of cross-view tracking using graph partition as described in the paper, this implementation use a greedy approach to associate 2d poses across views.

Install

  • install Openpose. Note that if you just want to visualize the captured animation or do some test with the code, you can ignore this step. I already re-generated some intermediate data and the final captured animation of the Shelf dataset under the ./data folder.

  • create anaconda environment

conda env create -n motion python=3.8.2
conda activate motion
pip install -r requirements.txt

Usage

This is the complete instruction to run the whole pipeline.

  • run openpose: the following bash script will call openpose to extract 2d keypoints from input videos and output json result to the output folder [the second argument]
bash ./run_openpose.sh ./data/shelf/videos ./data/shelf/kps_opn
  • generate the test data: prepare some convenient data for running the pipeline. In principle, the pipeline can be run in real-time, but for the sake of debugging, it's more convenient to export some pre-generated data.
python ./motion_capture.py --mode prepare --opn_kps_dir ./data/shelf/kps_opn --calib_dir ./data/shelf/calibs --out_data_dir ./data/shelf/dframes/
  • cross-view tracking and inverse kinematics
python ./motion_capture.py --model run --video_dir ./data/shelf/videos --data_dir ./data/shelf/dframes --output_dir ./data/shelf/tracklets/
  • visualize the captured animation
python ./motion_capture.py --tlet_path ./data/shelf/tracklets/tracklets.pkl

#TODO

  • debug frame 131. black guy is failed

About

A prototype implementation in python of the paper "Cross-View Tracking for Multi-Human 3D Pose Estimation at over 100 FPS ", with inverse kinematics and bone length optimziation

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published