Spaces:
Sleeping
Sleeping
File size: 1,243 Bytes
d7e58f0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# Original order from MANO J_regressor
MANO_RIGHT_KEYPOINTS = [
'right_wrist', 'right_index_1', 'right_index_2', 'right_index_3',
'right_middle_1', 'right_middle_2', 'right_middle_3', 'right_pinky_1',
'right_pinky_2', 'right_pinky_3', 'right_ring_1', 'right_ring_2',
'right_ring_3', 'right_thumb_1', 'right_thumb_2', 'right_thumb_3',
'right_thumb', 'right_index', 'right_middle', 'right_ring', 'right_pinky'
]
MANO_LEFT_KEYPOINTS = [
x.replace('right_', 'left_') for x in MANO_RIGHT_KEYPOINTS
]
# Re-arranged order is compatible with the output of manolayer
# from official [manopth](https://github.com/hassony2/manopth)
MANO_REORDER_MAP = [
0, 13, 14, 15, 16, 1, 2, 3, 17, 4, 5, 6, 18, 10, 11, 12, 19, 7, 8, 9, 20
]
MANO_RIGHT_REORDER_KEYPOINTS = [
MANO_RIGHT_KEYPOINTS[i] for i in MANO_REORDER_MAP
]
MANO_LEFT_REORDER_KEYPOINTS = [
MANO_LEFT_KEYPOINTS[i] for i in MANO_REORDER_MAP
]
# Deprecated: reserved for backward compatibility
MANO_KEYPOINTS = MANO_RIGHT_KEYPOINTS
# Two hands (left + right)
MANO_HANDS_KEYPOINTS = MANO_LEFT_KEYPOINTS + MANO_RIGHT_KEYPOINTS
# Reordered two hands (left + right)
MANO_HANDS_REORDER_KEYPOINTS = \
MANO_LEFT_REORDER_KEYPOINTS + MANO_RIGHT_REORDER_KEYPOINTS
|