Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
fadilm777 committed Feb 6, 2024
1 parent cb89ce8 commit b212e5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarks/yolov8.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def predict(self, image: Image.Image) -> Optional[BoundingBox]:
for r in pred:
boxes = r.boxes
for box in boxes:
print(box.xywh[0])
print("a", box.xywh[0])

return BoundingBox(Vec2(x, y), Vec2(w, h))

Expand Down

0 comments on commit b212e5c

Please sign in to comment.