facebookresearch / frankmocap

A Strong and Easy-to-use Single View 3D Hand+Body Pose Estimator
Other
2.14k stars 374 forks source link

Distinguish between left and right hands? #155

Closed wangjye777 closed 3 years ago

wangjye777 commented 3 years ago

How to distinguish left and right hands for ego_centric ? Looking forward to your reply

wangjye777 commented 3 years ago

hand side info (left/right)

lr_vector = loss_list[2][0].detach() lr = torch.sigmoid(lr_vector) > 0.5 lr = lr.squeeze(0).float()

Does the value of lr judge left and right hands?

penincillin commented 3 years ago

@wangjye777 We adopt trained hand detectors from 100DOH to distinguish left/right hands. Please refer to Ego_Centric_Detector for more details.

wangjye777 commented 3 years ago

@wangjye777 We adopt trained hand detectors from 100DOH to distinguish left/right hands. Please refer to Ego_Centric_Detector for more details.