├── README.md ├── config.py ├── constants.py ├── data └── README.md ├── datasets ├── __init__.py ├── base_dataset.py ├── base_dataset_train.py ├── mixed_dataset.py └── preprocess │ ├── README.md │ ├── __init__.py │ ├── h36m_train.py │ ├── mpi_inf_3dhp_mv.py │ └── pw3d.py ├── demo_mvspin.py ├── downtown_upstairs_00.gif ├── eval.py ├── examples ├── test.png ├── test_bboxes.pkl ├── test_bboxes.png ├── test_param.pkl ├── test_shape.png ├── test_shape_side.png └── test_smpl.obj ├── models ├── __init__.py ├── hmr.py └── smpl.py ├── mvsmplify ├── __init__.py ├── losses_mv.py ├── prior.py └── smplify_mv.py ├── requirement.txt ├── train.py ├── train ├── __init__.py ├── fits_dict.py └── trainer.py └── utils ├── __init__.py ├── base_trainer.py ├── data_loader.py ├── geometry.py ├── imutils.py ├── part_utils.py ├── pose_utils.py ├── renderer.py ├── renderer_old.py ├── saver.py └── train_options.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/config.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/constants.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/datasets/__init__.py -------------------------------------------------------------------------------- /datasets/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/datasets/base_dataset.py -------------------------------------------------------------------------------- /datasets/base_dataset_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/datasets/base_dataset_train.py -------------------------------------------------------------------------------- /datasets/mixed_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/datasets/mixed_dataset.py -------------------------------------------------------------------------------- /datasets/preprocess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/datasets/preprocess/README.md -------------------------------------------------------------------------------- /datasets/preprocess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/datasets/preprocess/__init__.py -------------------------------------------------------------------------------- /datasets/preprocess/h36m_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/datasets/preprocess/h36m_train.py -------------------------------------------------------------------------------- /datasets/preprocess/mpi_inf_3dhp_mv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/datasets/preprocess/mpi_inf_3dhp_mv.py -------------------------------------------------------------------------------- /datasets/preprocess/pw3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/datasets/preprocess/pw3d.py -------------------------------------------------------------------------------- /demo_mvspin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/demo_mvspin.py -------------------------------------------------------------------------------- /downtown_upstairs_00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/downtown_upstairs_00.gif -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/eval.py -------------------------------------------------------------------------------- /examples/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/examples/test.png -------------------------------------------------------------------------------- /examples/test_bboxes.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/examples/test_bboxes.pkl -------------------------------------------------------------------------------- /examples/test_bboxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/examples/test_bboxes.png -------------------------------------------------------------------------------- /examples/test_param.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/examples/test_param.pkl -------------------------------------------------------------------------------- /examples/test_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/examples/test_shape.png -------------------------------------------------------------------------------- /examples/test_shape_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/examples/test_shape_side.png -------------------------------------------------------------------------------- /examples/test_smpl.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/examples/test_smpl.obj -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/hmr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/models/hmr.py -------------------------------------------------------------------------------- /models/smpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/models/smpl.py -------------------------------------------------------------------------------- /mvsmplify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/mvsmplify/__init__.py -------------------------------------------------------------------------------- /mvsmplify/losses_mv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/mvsmplify/losses_mv.py -------------------------------------------------------------------------------- /mvsmplify/prior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/mvsmplify/prior.py -------------------------------------------------------------------------------- /mvsmplify/smplify_mv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/mvsmplify/smplify_mv.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/requirement.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/train.py -------------------------------------------------------------------------------- /train/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/train/__init__.py -------------------------------------------------------------------------------- /train/fits_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/train/fits_dict.py -------------------------------------------------------------------------------- /train/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/train/trainer.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/base_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/utils/base_trainer.py -------------------------------------------------------------------------------- /utils/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/utils/data_loader.py -------------------------------------------------------------------------------- /utils/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/utils/geometry.py -------------------------------------------------------------------------------- /utils/imutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/utils/imutils.py -------------------------------------------------------------------------------- /utils/part_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/utils/part_utils.py -------------------------------------------------------------------------------- /utils/pose_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/utils/pose_utils.py -------------------------------------------------------------------------------- /utils/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/utils/renderer.py -------------------------------------------------------------------------------- /utils/renderer_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/utils/renderer_old.py -------------------------------------------------------------------------------- /utils/saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/utils/saver.py -------------------------------------------------------------------------------- /utils/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leezhongguo/MVSPIN_NEW/HEAD/utils/train_options.py --------------------------------------------------------------------------------