├── .gitignore ├── LICENSE ├── README.md ├── annotations └── camma_mvor_2018.json ├── detections_results ├── alphapose_bbox.json ├── alphapose_kps.json ├── dfcnet_rfcn_bbox.json ├── faster_rcnn_bbox.json ├── mv3dreg.mat ├── openpose_bbox.json ├── openpose_bbox_multiscale.json ├── openpose_kps.json ├── openpose_kps_multiscale.json ├── rtpose_bbox.json └── rtpose_kps.json ├── figs ├── MVOR-GT.PNG ├── camma_logo_tr.png ├── data_camma_logo_tr.png ├── kmask-rcnn-pred.png └── pose_variability.png ├── lib ├── __init__.py ├── eval_ap_2dperson.py ├── eval_mpjp_error_3dpose.m ├── eval_pck_2dpose.py ├── show_stats.py └── visualize_groundtruth.py ├── mvor_demo.ipynb ├── requirements.txt └── tools ├── run_eval_ap_2dperson.sh ├── run_eval_mpjp_error_3dpose.sh ├── run_eval_pck_2dpose.sh └── run_visualize_groundtruth.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/README.md -------------------------------------------------------------------------------- /annotations/camma_mvor_2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/annotations/camma_mvor_2018.json -------------------------------------------------------------------------------- /detections_results/alphapose_bbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/detections_results/alphapose_bbox.json -------------------------------------------------------------------------------- /detections_results/alphapose_kps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/detections_results/alphapose_kps.json -------------------------------------------------------------------------------- /detections_results/dfcnet_rfcn_bbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/detections_results/dfcnet_rfcn_bbox.json -------------------------------------------------------------------------------- /detections_results/faster_rcnn_bbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/detections_results/faster_rcnn_bbox.json -------------------------------------------------------------------------------- /detections_results/mv3dreg.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/detections_results/mv3dreg.mat -------------------------------------------------------------------------------- /detections_results/openpose_bbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/detections_results/openpose_bbox.json -------------------------------------------------------------------------------- /detections_results/openpose_bbox_multiscale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/detections_results/openpose_bbox_multiscale.json -------------------------------------------------------------------------------- /detections_results/openpose_kps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/detections_results/openpose_kps.json -------------------------------------------------------------------------------- /detections_results/openpose_kps_multiscale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/detections_results/openpose_kps_multiscale.json -------------------------------------------------------------------------------- /detections_results/rtpose_bbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/detections_results/rtpose_bbox.json -------------------------------------------------------------------------------- /detections_results/rtpose_kps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/detections_results/rtpose_kps.json -------------------------------------------------------------------------------- /figs/MVOR-GT.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/figs/MVOR-GT.PNG -------------------------------------------------------------------------------- /figs/camma_logo_tr.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /figs/data_camma_logo_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/figs/data_camma_logo_tr.png -------------------------------------------------------------------------------- /figs/kmask-rcnn-pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/figs/kmask-rcnn-pred.png -------------------------------------------------------------------------------- /figs/pose_variability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/figs/pose_variability.png -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/eval_ap_2dperson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/lib/eval_ap_2dperson.py -------------------------------------------------------------------------------- /lib/eval_mpjp_error_3dpose.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/lib/eval_mpjp_error_3dpose.m -------------------------------------------------------------------------------- /lib/eval_pck_2dpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/lib/eval_pck_2dpose.py -------------------------------------------------------------------------------- /lib/show_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/lib/show_stats.py -------------------------------------------------------------------------------- /lib/visualize_groundtruth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/lib/visualize_groundtruth.py -------------------------------------------------------------------------------- /mvor_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/mvor_demo.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/run_eval_ap_2dperson.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/tools/run_eval_ap_2dperson.sh -------------------------------------------------------------------------------- /tools/run_eval_mpjp_error_3dpose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/tools/run_eval_mpjp_error_3dpose.sh -------------------------------------------------------------------------------- /tools/run_eval_pck_2dpose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/tools/run_eval_pck_2dpose.sh -------------------------------------------------------------------------------- /tools/run_visualize_groundtruth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CAMMA-public/MVOR/HEAD/tools/run_visualize_groundtruth.sh --------------------------------------------------------------------------------