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 c0bcdf2 commit 2633144
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmarks/yolov8.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def predict(self, image: Image.Image) -> Optional[BoundingBox]:
Returns a list with dictionary items for each prediction
"""
im0 = np.array(image)
print(im0)
print(im0[0])



Expand All @@ -56,7 +56,7 @@ def predict(self, image: Image.Image) -> Optional[BoundingBox]:
device=self.device,
max_det=self.max_det,
)
print(results)
print(results[0])

if __name__ == "__main__":
import glob
Expand Down

0 comments on commit 2633144

Please sign in to comment.