yizhou-wang / RODNet

RODNet: Radar object detection network
MIT License
237 stars 76 forks source link

Questions about the test set and test.py #73

Open Heng-Dickens opened 1 year ago

Heng-Dickens commented 1 year ago

Hi, I recently read your paper RODNet, and found it very inspiring. But something went wrong during the test. image When the program runs to line 192, TypeError:'NoneType' object is not subscribable appears. Then I check the CRDataset.py and found that when the annotation information does not exist, data_dict['anno'] is none. I think this is the cause of the error above. While in the CRUW dataset, there is no annotation file provided. So I wonder how to run the test.py. Or is there something else wrong with me that prevents the program from running? looking forward to an answer.

promaxj commented 1 year ago

Maybe need to confirm the placement of the dataset.

ref: https://github.com/yizhou-wang/RODNet#prepare-data-for-rodnet

zhchen17 commented 1 year ago

In test.py, image_path is used several times, in fact this doesn't exist, and from the composition of the dataset, there is only radar data in the test set, no image data, so it doesn't work.

rastna12 commented 7 months ago

I am seeing the same thing too. @zhchen17 did you find a solution? My folder structure matches the README guide. @yizhou-wang is there a missing dataset folder with test images or something? What should we do for the test images since it seems like the test script is expecting them?