摘要: 两个boxes之间的iou计算: import numpy as np def iou(box1, box2): x1, y1, x2, y2 = box1 w1, h1, w2, h2 = box2 left_max = max(x1, w1) right_min = min(x2, w2) to 阅读全文
posted @ 2023-07-15 12:22 Picassooo 阅读(365) 评论(0) 推荐(0) 编辑