Demo for InterHand2.6M
redorangeyellowy opened this issue · 8 comments
Hello.
Is there any demo code for InterHand2.6M dataset?
which demo?
In your code, there is a demo code for another dataset (i.e. COCO, Human3.6M, MPII, etc), but I don't think there is a demo code for InterHand2.6M dataset.
Looking closely at the code on the link, it seems to render images with mano parameters.
But, if there is an image without a mano parameter, can I reconstruct the mesh of hand image?
All the demo codes in this repo is to render meshes. The above code is also for rendering meshes.
https://github.com/facebookresearch/InterHand2.6M/blob/main/tool/MANO_render/render.py#L60
Then, if there is no value in the mano_params
of the code above, isn't there an image that can't be rendered?
I wonder what I should do if I want to render these images which have no mano_params
.
There could be some cases without mano parameters as there is no enough evidence (target) to get mano parameters. Such case mainly includes invalid 3D root joint coordinates as root joint coordinate is necessary to fit MANO parameters to GT 3D joint coordinates after canceling root traslation. In such case, you can fit MANO parameters to 2D joint coordinates, but the result would be not very good to call it as 'GT MANO parameters' as fitted data to 2D suffers from depth/scale ambiguity.
Okay. Thank you for your reply.