Python utilities for reading, writing, and visualizing BVH files
Runs with Python 3 and requires the dependencies PyGLM, matplotlib, and NumPy.
python3 -m pip install --upgrade pip
python3 -m pip install PyGLM
python3 -m pip install numpy
python3 -m pip install matplotlib
To visualize a BVH file, use the following code
animation = BVH()
animation.load(bvhfilename)
BVHAnimator(animation)
See example.py for an example.
