├── LICENSE ├── README.md ├── dataset └── mpi │ ├── images │ ├── jsons │ ├── MPI_MP_TEST_annotations.json │ ├── MPI_MP_TRAIN_annotations.json │ └── MPI_MP_VAL_annotations.json │ └── val_gt │ └── mpi_val_groundtruth.mat ├── exps ├── logs │ └── ppn.log ├── preds │ ├── mat_results │ │ └── pred_keypoints_mpii_multi.mat │ ├── temp │ │ └── predictions.mat │ └── vis_results │ │ └── .keep_dir_in_git └── snapshots │ └── .keep_dir_in_git ├── main.py ├── nets ├── __init__.py ├── network_init.py └── pose_partition_network.py ├── run_test.sh ├── run_train.sh └── utils ├── __init__.py ├── calc_mAP.py ├── data_augmentation.py ├── data_loader.py ├── eval_util.py ├── joint_transformation.py ├── plot_map_curve.py ├── target_generation.py └── vis_utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/README.md -------------------------------------------------------------------------------- /dataset/mpi/images: -------------------------------------------------------------------------------- 1 | /home/niexuecheng/DATA/Pose_Data/MPII/images -------------------------------------------------------------------------------- /dataset/mpi/jsons/MPI_MP_TEST_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/dataset/mpi/jsons/MPI_MP_TEST_annotations.json -------------------------------------------------------------------------------- /dataset/mpi/jsons/MPI_MP_TRAIN_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/dataset/mpi/jsons/MPI_MP_TRAIN_annotations.json -------------------------------------------------------------------------------- /dataset/mpi/jsons/MPI_MP_VAL_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/dataset/mpi/jsons/MPI_MP_VAL_annotations.json -------------------------------------------------------------------------------- /dataset/mpi/val_gt/mpi_val_groundtruth.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/dataset/mpi/val_gt/mpi_val_groundtruth.mat -------------------------------------------------------------------------------- /exps/logs/ppn.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/exps/logs/ppn.log -------------------------------------------------------------------------------- /exps/preds/mat_results/pred_keypoints_mpii_multi.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/exps/preds/mat_results/pred_keypoints_mpii_multi.mat -------------------------------------------------------------------------------- /exps/preds/temp/predictions.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/exps/preds/temp/predictions.mat -------------------------------------------------------------------------------- /exps/preds/vis_results/.keep_dir_in_git: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exps/snapshots/.keep_dir_in_git: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/main.py -------------------------------------------------------------------------------- /nets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nets/network_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/nets/network_init.py -------------------------------------------------------------------------------- /nets/pose_partition_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/nets/pose_partition_network.py -------------------------------------------------------------------------------- /run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/run_test.sh -------------------------------------------------------------------------------- /run_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/run_train.sh -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/calc_mAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/utils/calc_mAP.py -------------------------------------------------------------------------------- /utils/data_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/utils/data_augmentation.py -------------------------------------------------------------------------------- /utils/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/utils/data_loader.py -------------------------------------------------------------------------------- /utils/eval_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/utils/eval_util.py -------------------------------------------------------------------------------- /utils/joint_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/utils/joint_transformation.py -------------------------------------------------------------------------------- /utils/plot_map_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/utils/plot_map_curve.py -------------------------------------------------------------------------------- /utils/target_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/utils/target_generation.py -------------------------------------------------------------------------------- /utils/vis_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NieXC/pytorch-ppn/HEAD/utils/vis_utils.py --------------------------------------------------------------------------------