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))