diff --git a/examples/YOLOv8-TFLite-Python/main.py b/examples/YOLOv8-TFLite-Python/main.py index 1fadd86b..2c85faa8 100644 --- a/examples/YOLOv8-TFLite-Python/main.py +++ b/examples/YOLOv8-TFLite-Python/main.py @@ -215,7 +215,7 @@ if __name__ == "__main__": args = parser.parse_args() detector = YOLOv8TFLite(args.model, args.conf, args.iou, args.metadata) - result = detector.detect(str(ASSETS / "bus.jpg"))[..., ::-1] + result = detector.detect(str(ASSETS / "bus.jpg")) cv2.imshow("Output", result) cv2.waitKey(0)