From 82f653b0f579db97f8908800d45e8f5287f79bd3 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Tue, 2 Jun 2020 23:59:03 -0700 Subject: [PATCH] webcam multiple bounding box bug fix #1188 --- detect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/detect.py b/detect.py index 7fc75c08..b52f7826 100644 --- a/detect.py +++ b/detect.py @@ -104,7 +104,7 @@ def detect(save_img=False): # Process detections for i, det in enumerate(pred): # detections for image i if webcam: # batch_size >= 1 - p, s, im0 = path[i], '%g: ' % i, im0s[i] + p, s, im0 = path[i], '%g: ' % i, im0s[i].copy() else: p, s, im0 = path, '', im0s