sayedM commited on
Commit
4843045
·
1 Parent(s): 05171b7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -41,6 +41,7 @@ def yolov8_inference(
41
  image=image[:, :, ::-1].astype(np.uint8)
42
  detections = sv.Detections.from_yolov8(results)
43
  annotated_image = annotatorbbox.annotate(scene=image, detections=detections)
 
44
 
45
 
46
 
 
41
  image=image[:, :, ::-1].astype(np.uint8)
42
  detections = sv.Detections.from_yolov8(results)
43
  annotated_image = annotatorbbox.annotate(scene=image, detections=detections)
44
+ annotated_image = annotatorbbox.annotate(scene=annotated_image , detections=detections)
45
 
46
 
47