Daniil-Osokin / gccpm-look-into-person-cvpr19.pytorch

Fast and accurate single-person pose estimation, ranked 10th at CVPR'19 LIP challenge. Contains implementation of "Global Context for Convolutional Pose Machines" paper.
Apache License 2.0
168 stars 28 forks source link

Realize the real-time recognition of human body posture by the camera #18

Closed congcheng-qu closed 3 years ago

congcheng-qu commented 3 years ago

Hello, I am a newcomer to deep learning, and I would like to ask you. If you want to change your program to a camera to dynamically recognize human posture in real time, is there a good way?

Daniil-Osokin commented 3 years ago

Hi! This is a single person pose estimation model. It expects as input cropped image with centered person inside. To run the dynamic demo you need to detect persons in a frame (with object detector), then run for each pose estimation model. Here you can find the example of such demo. Or you may consider this demo, it does multi-person pose estimation at once.

congcheng-qu commented 3 years ago

Ok, thank you very much.