SoonminHwang / rgbt-ped-detection

KAIST Multispectral Pedestrian Detection Benchmark [CVPR '15]
http://multispectral.kaist.ac.kr
Other
304 stars 61 forks source link

Is the set_counter logic valid in data/scripts/kaist_to_voc_format.py ? #21

Open suryagutta opened 3 years ago

suryagutta commented 3 years ago

Hi, In data/scripts/kaist_to_voc_format.py, I see the following:

# all train images but 20% from test
if set_ == 'set06' and set_counter == 901:  # all = 1161, person only = 901

But, in the annotations set06 folder, I see 5562 text files that have 'person'. 20% of 5562 comes to 1112. But the above logic is checking the counter for 901.

Can someone clarify? Thank you.