├── .gitignore ├── README.md ├── RH_evaluation ├── __init__.py ├── eval_3DMPPE_RH_results.py ├── eval_SMAP_RH_results.py ├── evaluation.py └── matching.py ├── assets ├── RH_demos.png ├── RH_logo.png ├── RH_skeletons.png ├── RH_table.png └── depth_layer.png └── demo.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | *.jpg 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/Relative_Human/HEAD/README.md -------------------------------------------------------------------------------- /RH_evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/Relative_Human/HEAD/RH_evaluation/__init__.py -------------------------------------------------------------------------------- /RH_evaluation/eval_3DMPPE_RH_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/Relative_Human/HEAD/RH_evaluation/eval_3DMPPE_RH_results.py -------------------------------------------------------------------------------- /RH_evaluation/eval_SMAP_RH_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/Relative_Human/HEAD/RH_evaluation/eval_SMAP_RH_results.py -------------------------------------------------------------------------------- /RH_evaluation/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/Relative_Human/HEAD/RH_evaluation/evaluation.py -------------------------------------------------------------------------------- /RH_evaluation/matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/Relative_Human/HEAD/RH_evaluation/matching.py -------------------------------------------------------------------------------- /assets/RH_demos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/Relative_Human/HEAD/assets/RH_demos.png -------------------------------------------------------------------------------- /assets/RH_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/Relative_Human/HEAD/assets/RH_logo.png -------------------------------------------------------------------------------- /assets/RH_skeletons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/Relative_Human/HEAD/assets/RH_skeletons.png -------------------------------------------------------------------------------- /assets/RH_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/Relative_Human/HEAD/assets/RH_table.png -------------------------------------------------------------------------------- /assets/depth_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/Relative_Human/HEAD/assets/depth_layer.png -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arthur151/Relative_Human/HEAD/demo.py --------------------------------------------------------------------------------