Open Williamongh opened 5 years ago
For question2, according to the original paper, I think the author set the anchor point in the center. From the perspective of mine, (0, 0) is also okay because it can propose almost same number of anchor boxes. But what influence it will have on the mAP still needs to be tested.
@JacobYuan7 Thank you for your reply. I agree. For Q1, maybe it's just temporary code when debugging.
@JacobYuan7 Thank you for your reply. I agree. For Q1, maybe it's just temporary code when debugging.
Have you tested its influence on mAP about Q2?anyway,(0,0) is more intuitive.
Thanks for your sharing! It helps me a lot. And I have 2 question about "./model/utils/bbox_tools.py".
In "./model/utils/bbox_tools.py":
I wonder why import
numpy
twice as different name?In function
generate_anchor_base()
:Why set the centre of anchors
(base_size / 2, base_size / 2)
? Isn't(0, 0)
more intuitive?