├── Demo_picture.py ├── Demo_video.py ├── Open_Pose_Step_by_Step.ipynb ├── README.md ├── images ├── CNN.png ├── CPU_CMU.gif ├── CPU_Mobilenet.gif ├── GPU_CMU.gif ├── GPU_Mobilenet.gif ├── Parsing.png ├── dance2.mp4 ├── demo.jpg ├── pipeline.png ├── skeleton.jpg └── ski.jpg ├── model.py ├── utils ├── __pycache__ │ └── util.cpython-36.pyc └── util.py └── weights └── MobileNet_bodypose_model /Demo_picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/Demo_picture.py -------------------------------------------------------------------------------- /Demo_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/Demo_video.py -------------------------------------------------------------------------------- /Open_Pose_Step_by_Step.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/Open_Pose_Step_by_Step.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /images/CNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/images/CNN.png -------------------------------------------------------------------------------- /images/CPU_CMU.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/images/CPU_CMU.gif -------------------------------------------------------------------------------- /images/CPU_Mobilenet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/images/CPU_Mobilenet.gif -------------------------------------------------------------------------------- /images/GPU_CMU.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/images/GPU_CMU.gif -------------------------------------------------------------------------------- /images/GPU_Mobilenet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/images/GPU_Mobilenet.gif -------------------------------------------------------------------------------- /images/Parsing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/images/Parsing.png -------------------------------------------------------------------------------- /images/dance2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/images/dance2.mp4 -------------------------------------------------------------------------------- /images/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/images/demo.jpg -------------------------------------------------------------------------------- /images/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/images/pipeline.png -------------------------------------------------------------------------------- /images/skeleton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/images/skeleton.jpg -------------------------------------------------------------------------------- /images/ski.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/images/ski.jpg -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/model.py -------------------------------------------------------------------------------- /utils/__pycache__/util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/utils/__pycache__/util.cpython-36.pyc -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/utils/util.py -------------------------------------------------------------------------------- /weights/MobileNet_bodypose_model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/Real-time-human-pose-estimation-by-pytorch/HEAD/weights/MobileNet_bodypose_model --------------------------------------------------------------------------------