Open abhi-kumar opened 2 years ago
https://github.com/open-mmlab/mmdetection/blob/master/mmdet/core/anchor/anchor_generator.py here is the code to generate anchors, you can have a look. Also, please note that the faster-rcnn-r50-fpn is the code as FPN, if you want to read the original code, it is suggested to have a look at faster-rcnn-r50-c4.
Hi,
Where can i find resources on understanding the anchor generator arguments and the output in faster rcnn config. The original paper talks simply about sizes and ratios. Here there is scale, strides, ratios, base_size and I am finding it very difficult to understand how its generating anchors. I have spent some 8-10 hours reading the documentation and playing around with the code below, still didn't get it.
Please point me to the right resource to understand how the anchors are calculated in mmdetection and what these parameters are.