simple-faster-rcnn-pytorch
simple-faster-rcnn-pytorch copied to clipboard
A question about calc_detection_voc_prec_rec function in eval_tools
trafficstars
i' m confused about these code calc_detection_voc_prec_rec function following:
pred_bbox_l = pred_bbox_l.copy()
pred_bbox_l[:, 2:] += 1
gt_bbox_l = gt_bbox_l.copy()
gt_bbox_l[:, 2:] += 1
why x_max and y_max in bbox coordinate should plus 1
I am confused too. Did you solve it?