HigherHRNet-Human-Pose-Estimation
HigherHRNet-Human-Pose-Estimation copied to clipboard
joint_order for my data
if cfg.DATASET.WITH_CENTER and not cfg.TEST.IGNORE_CENTER:
self.joint_order = [
i-1 for i in [18, 1, 2, 3, 4, 5, 6, 7, 12, 13, 8, 9, 10, 11, 14, 15, 16, 17]
]
else:
self.joint_order = [
i-1 for i in [1, 2, 3, 4, 5, 6, 7, 12, 13, 8, 9, 10, 11, 14, 15, 16, 17]
]
lib/core/group.py
# dataset dependent configuration for visualization
coco_part_labels = [
'nose', 'eye_l', 'eye_r', 'ear_l', 'ear_r',
'sho_l', 'sho_r', 'elb_l', 'elb_r', 'wri_l', 'wri_r',
'hip_l', 'hip_r', 'kne_l', 'kne_r', 'ank_l', 'ank_r'
]
coco_part_idx = {
b: a for a, b in enumerate(coco_part_labels)
}
coco_part_orders = [
('nose', 'eye_l'), ('eye_l', 'eye_r'), ('eye_r', 'nose'),
('eye_l', 'ear_l'), ('eye_r', 'ear_r'), ('ear_l', 'sho_l'),
('ear_r', 'sho_r'), ('sho_l', 'sho_r'), ('sho_l', 'hip_l'),
('sho_r', 'hip_r'), ('hip_l', 'hip_r'), ('sho_l', 'elb_l'),
('elb_l', 'wri_l'), ('sho_r', 'elb_r'), ('elb_r', 'wri_r'),
('hip_l', 'kne_l'), ('kne_l', 'ank_l'), ('hip_r', 'kne_r'),
('kne_r', 'ank_r')
]
lib/dataset/init.py
hi. I am modifying the code to apply my data. What is the correlation between these two values? I don't understand what this order --> [1, 2, 3, 4, 5, 6, 7, 12, 13, 8, 9, 10, 11, 14, 15, 16, 17]
I have the same problem. Have you solved it?
I have the same problem. Have you solved it?
I have the same problem. Have you solved it?