From 3ea02dec1f034c45dc407d5f94da9f6f91ffcdf5 Mon Sep 17 00:00:00 2001 From: freddyaboulton Date: Fri, 11 Oct 2024 13:03:40 -0700 Subject: [PATCH] fix --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index d21679f..f6a58ad 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,6 @@ else: def detection(image, conf_threshold=0.3): - print("running detection") image = cv2.resize(image, (model.input_width, model.input_height)) new_image = model.detect_objects(image, conf_threshold) return cv2.resize(new_image, (500, 500))