hongsukchoi / Pose2Mesh_RELEASE

Official Pytorch implementation of "Pose2Mesh: Graph Convolutional Network for 3D Human Pose and Mesh Recovery from a 2D Human Pose", ECCV 2020
MIT License
678 stars 69 forks source link

How may I get MANO parameters from pose2mesh model? #46

Closed gobanana520 closed 2 years ago

gobanana520 commented 2 years ago

In the demo, it outputs the mesh and rendered joints on 2D image for MANO. Is there a method to output betas & poses instead of the mesh? I have the labeled hand joints, but need to extract mano parameters (betas, poses).

hongsukchoi commented 2 years ago

Pose2Mesh is a model-free method that directly regresses a 3D mesh without model parameters. You could re-train the Pose2Mesh attached with some layers that regress parameters. Refer to this

Or you can use other projects like this

gobanana520 commented 2 years ago

Thanks for the quick reply, I will try the linked project.