摘要: import numpy as np import torch def IOU(box1, box2, wh=False): if wh == False: xmin1,ymin1,xmax1,ymax1 = box1 xmin2,ymin2,xmax2,ymax2 = box2 else: xmi 阅读全文
posted @ 2022-05-12 20:52 fourmii 阅读(91) 评论(0) 推荐(0) 编辑