facebookresearch / assemblyhands-toolkit

AssemblyHands Toolkit is a Python package that provides data loader, visualization, and evaluation tools for the AssemblyHands dataset (CVPR 2023).
Other
91 stars 3 forks source link

interacting hands criteria #19

Closed ccchen091 closed 2 months ago

ccchen091 commented 2 months ago

Hello, I found a problem when training your model, the types of hands detected in your model are all single hand, but when I open the dataset to observe, I find that there are many interactive hands, not just one-handed pictures, so I would like to ask you what is the problem? “”“”“”“”“”“” Get bbox and root depth from groundtruth annotation Number of annotations in single hand sequences: 61153 Number of annotations in interacting hand sequences: 0 Number of skipped annotations: 387 “”“”“”“”“”“”“ image

tkhkaeio commented 2 months ago

In this codebase, we didn't assign the interacting label but rather created hand crops for each right and left hand. See this line.

You can modify this data loader according to your criteria for interacting hands. For instance,

I hope this can work for your case.