/poseviz

3D Human Pose Visualizer

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

PoseViz – 3D Human Pose Visualizer

Multi-person, multi-camera 3D human pose visualization tool built using Mayavi. As used in MeTRAbs visualizations.

This repo does not contain pose estimation code, only the visualization part.

Gist of usage

import poseviz

viz = poseviz.PoseViz(...)
camera = poseviz.Camera(...)
for frame in frames:
    bounding_boxes, poses3d = run_pose_estimation_model(frame)
    viz.update(frame=frame, boxes=bounding_boxes, poses=poses3d, camera=camera)

Detailed docs TBA.

Installation

Install Mayavi via Conda (the Mayavi pip package has compilation problems), clone this repo and install PoseViz via pip.

conda install mayavi -c conda-forge
pip install .

Then run demo.py to test if installation was successful.