hasanirtiza / Pedestron

[Pedestron] Generalizable Pedestrian Detection: The Elephant In The Room. @ CVPR2021
https://openaccess.thecvf.com/content/CVPR2021/papers/Hasan_Generalizable_Pedestrian_Detection_The_Elephant_in_the_Room_CVPR_2021_paper.pdf
Apache License 2.0
686 stars 159 forks source link

Can official ECP annotations be supported instead of the unofficial annotations provided in this project ? #118

Closed AndyVerne closed 2 years ago

AndyVerne commented 2 years ago

First, thanks for the great job. I want to know if the official annotations of EuroCity Persons are supported in this project. If not, could you tell me how to deal with the official ECP annotations format to be used in this project ? Thanks in advance. ; )

hasanirtiza commented 2 years ago

I am not sure if I understand you correctly. Pedestron expects annotations in the COCO format. Else you can write your own custom dataset, in mmdet/datasets, we do a custom dataset for CSP (coco_csp_ori). Secondly, we provide script to convert ECP annotations into the COCO format. Did you have a look here. Basically you work with official annotations, simply convert them into COCO format.

AndyVerne commented 2 years ago

I am not sure if I understand you correctly. Pedestron expects annotations in the COCO format. Else you can write your own custom dataset, in mmdet/datasets, we do a custom dataset for CSP (coco_csp_ori). Secondly, we provide script to convert ECP annotations into the COCO format. Did you have a look here. Basically you work with official annotations, simply convert them into COCO format.

Wow! That's great! Sorry about my unclear expression. Things you say is what I try to express. Thanks a lot. And I really appreciate your work!