摘要: 1、python语言下: def nms(self, dets, scores): # 这一代码来源于Faster RCNN项目 """"Pure Python NMS baseline.""" x1 = dets[:, 0] #xmin y1 = dets[:, 1] #ymin x2 = det 阅读全文
posted @ 2022-02-22 23:49 SrtFrmGNU 阅读(93) 评论(0) 推荐(0) 编辑