MCPcopy Index your code
hub / github.com/sml2h3/ddddocr / multiclass_nms

Method multiclass_nms

ddddocr/core/detection_engine.py:169–171  ·  view source on GitHub ↗

Multiclass NMS implemented in Numpy

(self, boxes, scores, nms_thr, score_thr)

Source from the content-addressed store, hash-verified

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 """原始的目标检测方法"""

Callers 1

get_bboxMethod · 0.95

Calls 1

Tested by

no test coverage detected