hnuzhy / BPJDet

Codes for my paper "Body-Part Joint Detection and Association via Extended Object Representation"
GNU General Public License v3.0
32 stars 5 forks source link

AP_Dual means Joint-AP? what about AP_Single? #17

Open HKKTT opened 9 months ago

HKKTT commented 9 months ago

2023-12-21 113451

hnuzhy commented 9 months ago

The AP_Single reported in our paper is calculated by cocoAPI, not the print values following AP_Dual(Joint_AP).

You can refer the Table 4 of our paper in this link https://arxiv.org/pdf/2304.10765.pdf image

HKKTT commented 9 months ago

But I looked at the source code of bodyhands, and it seems that this dual ap is not referring to joint ap; instead, it is more like single ap. I don't know if I misunderstood it. 2023-12-21 142658

hnuzhy commented 9 months ago

The definition of AP_Dual is a bit confusing. This indicator is newly defined by BodyHands. I just adopt its official code in my evaluation for fair comparing. https://github.com/hnuzhy/BPJDet/blob/main/utils/eval/eval_bodyhands.py You may consult the authors of BodyHands with your questions.

HKKTT commented 9 months ago

All right