yolo2
yolo2 copied to clipboard
data_util.py中convert_ground_truth函数的intersect_min和intersect_max算错了吧
intersect_min = np.minimum(box_min, anchors_min) intersect_max = np.maximum(box_max, anchors_max) 这两句中的取极值写反了吧