├── .gitignore ├── LICENSE.md ├── README.md ├── coco_style_convert.py ├── google_drive_downloader.py ├── joint.py ├── jta_banner.jpg ├── pose.py ├── posetrack_style_convert.py ├── requirements.txt ├── to_imgs.py ├── to_poses.py └── visualize.py /.gitignore: -------------------------------------------------------------------------------- 1 | ### Pycharm stuffs 2 | .idea/ 3 | *__pycache__/ 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabbrimatteo/JTA-Dataset/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabbrimatteo/JTA-Dataset/HEAD/README.md -------------------------------------------------------------------------------- /coco_style_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabbrimatteo/JTA-Dataset/HEAD/coco_style_convert.py -------------------------------------------------------------------------------- /google_drive_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabbrimatteo/JTA-Dataset/HEAD/google_drive_downloader.py -------------------------------------------------------------------------------- /joint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabbrimatteo/JTA-Dataset/HEAD/joint.py -------------------------------------------------------------------------------- /jta_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabbrimatteo/JTA-Dataset/HEAD/jta_banner.jpg -------------------------------------------------------------------------------- /pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabbrimatteo/JTA-Dataset/HEAD/pose.py -------------------------------------------------------------------------------- /posetrack_style_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabbrimatteo/JTA-Dataset/HEAD/posetrack_style_convert.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabbrimatteo/JTA-Dataset/HEAD/requirements.txt -------------------------------------------------------------------------------- /to_imgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabbrimatteo/JTA-Dataset/HEAD/to_imgs.py -------------------------------------------------------------------------------- /to_poses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabbrimatteo/JTA-Dataset/HEAD/to_poses.py -------------------------------------------------------------------------------- /visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabbrimatteo/JTA-Dataset/HEAD/visualize.py --------------------------------------------------------------------------------