Closed EAST-J closed 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?
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.
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?