roytseng-tw / Detectron.pytorch

A pytorch implementation of Detectron. Both training from scratch and inferring directly from pretrained Detectron weights are available.
MIT License
2.82k stars 567 forks source link

Which keypoints are actually detected? #175

Open rohitrango opened 5 years ago

rohitrango commented 5 years ago

Hi,

I have a small question. During evaluation, the detectron outputs all the keypoints' location, and some logit and probability associated with it. There is no binary tag regarding if the key point is detected or not. I want to test a custom algorithm that uses the information of the joints that are not detected. How can I know whether a keypoint is detected or not (and hence be able to assign a hard binary number to its existence)?

Thanks in advance.