Grid-R-CNN icon indicating copy to clipboard operation
Grid-R-CNN copied to clipboard

some questions about ”get_bboxes“ in "grid_head.py" file

Open zimenglan-sysu-512 opened this issue 6 years ago • 1 comments

hi @siyuanren why do u get grid_points by dividing 2W instead of W in these two lines? and what do these lines do as below?

        for i in range(9):
            xs[i::9] = xs[i::9] + base[i//3]
            ys[i::9] = ys[i::9] + base[i%3]

zimenglan-sysu-512 avatar Jun 17 '19 15:06 zimenglan-sysu-512

Hi, @zimenglan-sysu-512 . The codes you point out are the implementation of Grid Point Specific Representation Region proposed in Grid R-CNN Plus. You can refer to section 3.1 in https://arxiv.org/pdf/1906.05688.pdf for more details.

luxiin avatar Jun 17 '19 17:06 luxiin