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 8aacc23 commit 3c0f2cf
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 @@ -59,7 +59,7 @@ def predict(self, image: Image.Image) -> Optional[BoundingBox]:
max_det=self.max_det,
)
for r in pred:
print(r.boxes.xywh)
print(r.boxes.xywh.tolist())
#return BoundingBox(Vec2(x, y), Vec2(w, h))

if __name__ == "__main__":
Expand Down

0 comments on commit 3c0f2cf

Please sign in to comment.