Multiclass NMS implemented in Numpy
(self, boxes, scores, nms_thr, score_thr)
| 167 | return dets |
| 168 | |
| 169 | def multiclass_nms(self, boxes, scores, nms_thr, score_thr): |
| 170 | """Multiclass NMS implemented in Numpy""" |
| 171 | return self.multiclass_nms_class_agnostic(boxes, scores, nms_thr, score_thr) |
| 172 | |
| 173 | def get_bbox(self, image_bytes): |
| 174 | """原始的目标检测方法""" |
no test coverage detected