jshilong / DDQ

Dense Distinct Query for End-to-End Object Detection (CVPR2023)
Apache License 2.0
244 stars 6 forks source link

anchor base #9

Closed zhu011 closed 1 year ago

zhu011 commented 1 year ago

Very good work, if I want to add DDQ to an anchor anchor-based single-stage detection network, how do I need to change it, is it to add the detection header, if it is okay to add an angle regression, can you give some suggestions? Thank you.

jshilong commented 1 year ago

Thank you for your interest in our project.

You will only need to make minor modifications to the DDQFCN head to make it compatible with anchor-based methods. Specifically, you need change to the anchor generator and modify the anchor shape related code.

For the rotated head, please refer to https://github.com/open-mmlab/mmrotate/blob/main/configs/rotated_fcos/README.md.

Overall, I believe these changes are fairly straightforward.

zhu011 commented 1 year ago

Thanks for the answer, I'll try it