Spaces:
Build error
Build error
Update ultralytics/yolo/engine/predictor.py
Browse files
ultralytics/yolo/engine/predictor.py
CHANGED
@@ -186,7 +186,10 @@ class BasePredictor:
|
|
186 |
if self.webcam:
|
187 |
path, im0s = path[i], im0s[i]
|
188 |
p = Path(path)
|
189 |
-
|
|
|
|
|
|
|
190 |
|
191 |
if self.args.show:
|
192 |
self.show(p)
|
|
|
186 |
if self.webcam:
|
187 |
path, im0s = path[i], im0s[i]
|
188 |
p = Path(path)
|
189 |
+
res = self.write_results(i, preds, (p, im, im0s))
|
190 |
+
s += res[0]
|
191 |
+
return res[1]
|
192 |
+
|
193 |
|
194 |
if self.args.show:
|
195 |
self.show(p)
|