taohan10200 / DRNet

PyTorch implementations of the paper: "DR.VIC: Decomposition and Reasoning for Video Individual Counting, CVPR, 2022"
51 stars 9 forks source link

missing label for SENSE dataset #8

Open linthmwan opened 1 year ago

linthmwan commented 1 year ago

I download the SENSE dataset from baidu, but there is no label for scene IMG_4696_cut_03.txt at frame 000084.jpg and 000085.jpg. Can anyone provide GT of these two frames? thanks!

taohan10200 commented 1 year ago

Thanks for your reminder, it just because there is no object in these two frames.

linthmwan commented 1 year ago

IMG_4696_cut_03.txt Above is the file I download, I also checked that there are people in the frames 84.jpg and 85.jpg exactly.

taohan10200 commented 1 year ago

My file is the same with yours, I guess the annotators miss some objects in the whole dataset.

linthmwan commented 1 year ago

Thanks for reply! I found this issue because of running the test_SENSE.py and it will have error at VIC.py line 206 match_gt, pois = self.get_ROI_and_MatchInfo(target[0], target[1],noise=None) and successively in points_from_den.py unmatched0 = torch.where(dis.min(1)[0]>0)[0] because there is no target. Is there a correct way to run the test_SENSE.py?

taohan10200 commented 1 year ago

The simple way is to skip this scene. We will try to fix it later.

linthmwan commented 1 year ago

Got it. Thank you for your patience.