namepllet / HandOccNet

Offical pytorch implementation of "HandOccNet: Occlusion-Robust 3D Hand Mesh Estimation Network", CVPR 2022.
156 stars 30 forks source link

About the MANO params of HO3D datasets #14

Closed EAST-J closed 2 years ago

EAST-J commented 2 years ago

Hi, Thanks for your great work! I see that you use manopth to produce the gt verts of the hand. I notice that you do not sub the wrist of the hand, I wonder the produced gt verts in root-relative coordinates or in camera space coordinates? gt_verts, gt_joints = self.mano_layer(th_pose_coeffs=gt_mano_pose, th_betas=gt_mano_shape) Like METRO use FreiHAND dataset, METRO sub the wrist. gt_vertices = gt_vertices - gt_3d_root[:, None, :] If I want to use the HO3D on METRO, should I sub wrist?

namepllet commented 2 years ago

We produced GT verts and pred verts in coordinate system defined in MANO.

You will get similar results with and without sub wrist.

In case of METRO, sub wrist would be fine for HO3D.