mike08700000
Results
1
comments of
mike08700000
> """ iou函数未检测当两个框没有intersection的时候,如 box1 = (1,2,3,4) box2 = (5,6,7,8) """ def iou(box1, box2): xi1 = np.maximum(box1_x1, box2_x1) yi1 = np.maximum(box1_y1, box2_y1) xi2 = np.minimum(box1_x2, box2_x2) yi2 = np.minimum(box1_y2, box2_y2) inter_width...