Looking generate_anchor_base
method, which is Faster R-CNN util method in ChainerCV.
What is the base_size = 16
? I saw in the Documentation that it is
The width and the height of the reference window.
But what does "reference window" mean?
Also it says that anchor_scales=[8, 16, 32]
are the areas of the anchors but I thought that that the areas are (128, 256, 512)
Another question:
If the base size
is 16 and h = 128
and w=128
, Does that mean anchor_base[index, 0] = py - h / 2
is a negative value?
since py = 8 and and h/2 = 128/2