Hzzone / pytorch-openpose

pytorch implementation of openpose including Hand and Body Pose Estimation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How can I get one person date,not multi?

GYPgalaxy opened this issue · comments

I found that the FPS is just 1 ot 2, so I want to get one person date only. Maybe it will increase FPS?
If it doesn't work, what should I do to increase?

Decreasing the input image size may reduce the computational cost.

I will try that.THX. :)

By the way, I want to use the dataset pose_iter_584000.caffemodel , but I have no idea to use in torch . I'd love to know how you did it?! >_<

This repo was done two years ago. If I remember correctly, I have used https://github.com/vadimkantorov/caffemodel2pytorch to convert the Caffe model to PyTorch, and then manually check the state_dict to match the PyTorch module. In other words, you first convert the weights, second, define your own PyTorch network like me, maybe you can visualize the Caffe network using https://ethereon.github.io/netscope/quickstart.html, and finally match the PyTorch module and converted Caffe weights.

THX sooooo much !

Sorry to bother you again. I want to know if your two variables candidate, subset have corresponding numbers with human key points? For example, what is the correspondence between the ID of each joint point officially pointed out and your two variables? Because I need to know which joint point corresponds to each coordinate.

I found that even if the obtained joint points are not in order, your return data is arranged in order. So i'm confused.