You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Sergey,
I go through the codes these days and find a issue during calculate the ih in bbox_overlaps function, your code are:
ih = (
min(boxes[n, 3], query_boxes[k, 3]) -
max(boxes[n, 1], query_boxes[k, 1]) + 1
)
but I think it should be:
ih = (
min(boxes[n, 1], query_boxes[k, 1]) -
max(boxes[n, 3], query_boxes[k, 3]) + 1
)
wish your feedback, thanks.
quick link:
Hi Sergey,
I go through the codes these days and find a issue during calculate the ih in bbox_overlaps function, your code are:
ih = (
min(boxes[n, 3], query_boxes[k, 3]) -
max(boxes[n, 1], query_boxes[k, 1]) + 1
)
but I think it should be:
ih = (
min(boxes[n, 1], query_boxes[k, 1]) -
max(boxes[n, 3], query_boxes[k, 3]) + 1
)
wish your feedback, thanks.
quick link:
fast-rcnn/lib/utils/bbox.pyx
Line 44 in b612190
The text was updated successfully, but these errors were encountered: