├── .gitignore ├── LICENSE ├── README.assets ├── CleanShot 2024-03-10 at 06.31.45@2x.png ├── CleanShot 2024-03-10 at 06.32.14@2x.png └── CleanShot 2024-03-10 at 06.33.57@2x.png ├── README.md ├── bvh ├── Armchair1-preprocessed.bvh ├── Armchair1.bvh ├── Desk1-preprocessed.bvh ├── Desk1.bvh ├── SMPL.bvh ├── Sit54-preprocessed.bvh ├── Sit54.bvh └── src_bvh_hierarchy.bvh ├── requirements.txt ├── results-animation ├── All.mp4 ├── Armchair1.mp4 ├── Desk1.mp4 └── Sit54.mp4 ├── results-obj └── script-objs_to_animation-in_blender.py ├── retargeted_data ├── Armchair1-preprocessed-retargeted.npy ├── Desk1-preprocessed-retargeted.npy └── Sit54-preprocessed-retargeted.npy └── src ├── bvh_utils.py ├── preprocess.py ├── rendering-rerun.py ├── rendering.py ├── rendering_utils ├── config.py ├── customloss.py ├── prior.py ├── render_mesh.py ├── rotation2xyz.py ├── rotation_conversions.py ├── simplify_loc2rot.py ├── smpl.py ├── smpl │ ├── J_regressor_extra.npy │ ├── gmm_08.pkl │ ├── neutral_smpl_mean_params.h5 │ └── readme.txt ├── smplify.py └── vis_utils.py └── retargeting.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.assets/CleanShot 2024-03-10 at 06.31.45@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/README.assets/CleanShot 2024-03-10 at 06.31.45@2x.png -------------------------------------------------------------------------------- /README.assets/CleanShot 2024-03-10 at 06.32.14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/README.assets/CleanShot 2024-03-10 at 06.32.14@2x.png -------------------------------------------------------------------------------- /README.assets/CleanShot 2024-03-10 at 06.33.57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/README.assets/CleanShot 2024-03-10 at 06.33.57@2x.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/README.md -------------------------------------------------------------------------------- /bvh/Armchair1-preprocessed.bvh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/bvh/Armchair1-preprocessed.bvh -------------------------------------------------------------------------------- /bvh/Armchair1.bvh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/bvh/Armchair1.bvh -------------------------------------------------------------------------------- /bvh/Desk1-preprocessed.bvh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/bvh/Desk1-preprocessed.bvh -------------------------------------------------------------------------------- /bvh/Desk1.bvh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/bvh/Desk1.bvh -------------------------------------------------------------------------------- /bvh/SMPL.bvh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/bvh/SMPL.bvh -------------------------------------------------------------------------------- /bvh/Sit54-preprocessed.bvh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/bvh/Sit54-preprocessed.bvh -------------------------------------------------------------------------------- /bvh/Sit54.bvh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/bvh/Sit54.bvh -------------------------------------------------------------------------------- /bvh/src_bvh_hierarchy.bvh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/bvh/src_bvh_hierarchy.bvh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/requirements.txt -------------------------------------------------------------------------------- /results-animation/All.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/results-animation/All.mp4 -------------------------------------------------------------------------------- /results-animation/Armchair1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/results-animation/Armchair1.mp4 -------------------------------------------------------------------------------- /results-animation/Desk1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/results-animation/Desk1.mp4 -------------------------------------------------------------------------------- /results-animation/Sit54.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/results-animation/Sit54.mp4 -------------------------------------------------------------------------------- /results-obj/script-objs_to_animation-in_blender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/results-obj/script-objs_to_animation-in_blender.py -------------------------------------------------------------------------------- /retargeted_data/Armchair1-preprocessed-retargeted.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/retargeted_data/Armchair1-preprocessed-retargeted.npy -------------------------------------------------------------------------------- /retargeted_data/Desk1-preprocessed-retargeted.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/retargeted_data/Desk1-preprocessed-retargeted.npy -------------------------------------------------------------------------------- /retargeted_data/Sit54-preprocessed-retargeted.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/retargeted_data/Sit54-preprocessed-retargeted.npy -------------------------------------------------------------------------------- /src/bvh_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/src/bvh_utils.py -------------------------------------------------------------------------------- /src/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/src/preprocess.py -------------------------------------------------------------------------------- /src/rendering-rerun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/src/rendering-rerun.py -------------------------------------------------------------------------------- /src/rendering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/src/rendering.py -------------------------------------------------------------------------------- /src/rendering_utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/src/rendering_utils/config.py -------------------------------------------------------------------------------- /src/rendering_utils/customloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/src/rendering_utils/customloss.py -------------------------------------------------------------------------------- /src/rendering_utils/prior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/src/rendering_utils/prior.py -------------------------------------------------------------------------------- /src/rendering_utils/render_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/src/rendering_utils/render_mesh.py -------------------------------------------------------------------------------- /src/rendering_utils/rotation2xyz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/src/rendering_utils/rotation2xyz.py -------------------------------------------------------------------------------- /src/rendering_utils/rotation_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/src/rendering_utils/rotation_conversions.py -------------------------------------------------------------------------------- /src/rendering_utils/simplify_loc2rot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/src/rendering_utils/simplify_loc2rot.py -------------------------------------------------------------------------------- /src/rendering_utils/smpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/src/rendering_utils/smpl.py -------------------------------------------------------------------------------- /src/rendering_utils/smpl/J_regressor_extra.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/src/rendering_utils/smpl/J_regressor_extra.npy -------------------------------------------------------------------------------- /src/rendering_utils/smpl/gmm_08.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/src/rendering_utils/smpl/gmm_08.pkl -------------------------------------------------------------------------------- /src/rendering_utils/smpl/neutral_smpl_mean_params.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/src/rendering_utils/smpl/neutral_smpl_mean_params.h5 -------------------------------------------------------------------------------- /src/rendering_utils/smpl/readme.txt: -------------------------------------------------------------------------------- 1 | This directory leaves for SMPL models 2 | -------------------------------------------------------------------------------- /src/rendering_utils/smplify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/src/rendering_utils/smplify.py -------------------------------------------------------------------------------- /src/rendering_utils/vis_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/src/rendering_utils/vis_utils.py -------------------------------------------------------------------------------- /src/retargeting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmptyBlueBox/BVH2SMPL/HEAD/src/retargeting.py --------------------------------------------------------------------------------