akanazawa/human_dynamics

why use 25 joints instead of 24 joints?

Closed this issue · 1 comments

why HMMR use 25 joints instead of 24 joints as the general SMPL model use?

The 24 joints that the SMPL model uses do not necessarily correspond to the same joints used in various 2D datasets. As a result, we train a linear regressor that maps from the 6890 vertices of the SMPL mesh to the superset of all 2d keypoints used by various datasets (H3.6M, LSP, COCO, OpenPose, etc).

You can find the full list of keypoints here:

joint_names_coco = [
'R Heel',
'R Knee',
'R Hip',
'L Hip',
'L Knee',
'L Heel',
'R Wrist',
'R Elbow',
'R Shoulder',
'L Shoulder',
'L Elbow',
'L Wrist',
'Neck',
'Head',
'Nose',
'L Eye',
'R Eye',
'L Ear',
'R Ear',
'L Big Toe',
'R Big Toe',
'L Small Toe',
'R Small Toe',
'L Ankle',
'R Ankle',
]