PyTorch-YOLOv3 icon indicating copy to clipboard operation
PyTorch-YOLOv3 copied to clipboard

Why would get bbox , its one or two of xywh is inf, which cause the NMS a endless loop.

Open CHENCHAO0526 opened this issue 6 years ago • 2 comments

Should we add some restriction to the output of Yolo layer?

CHENCHAO0526 avatar Oct 29 '19 02:10 CHENCHAO0526

Merge overlapping bboxes by order of confidence

You can try to add 1e-16 to denominator. That works for me.

mama110 avatar Nov 28 '19 02:11 mama110

you should add code in utils/utils.py after large_overlap: if not any(large_overlap): detections = np.delete(detections, 0, 0) continue

daixiangzi avatar Mar 12 '20 07:03 daixiangzi