摘要: 非极大值抑制(Non-Maximum Suppression,NMS) 单类别NMS的numpy实现 def py_cpu_nms(dets, thresh): """Pure Python NMS baseline.""" #x1、y1、x2、y2、以及score赋值 x1 = dets[:, 0 阅读全文
posted @ 2021-05-23 16:01 Picassooo 阅读(80) 评论(0) 推荐(0) 编辑