diff --git a/dayglo_detector/dayglo_detector.py b/dayglo_detector/dayglo_detector.py index 210708e..9e0ab26 100644 --- a/dayglo_detector/dayglo_detector.py +++ b/dayglo_detector/dayglo_detector.py @@ -105,8 +105,6 @@ def calculate_dayglo_rating(image): crop_margin = 0.1 # 10% margin cropped_image = image[int(height * crop_margin):int(height * (1 - crop_margin)), int(width * crop_margin):int(width * (1 - crop_margin))] - - print("Calculating dayglo rating...") hsv_image = cv2.cvtColor(cropped_image, cv2.COLOR_BGR2HSV) mask_green = cv2.inRange(hsv_image, LOWER_COLOR_GREEN, UPPER_COLOR_GREEN) mask_yellow = cv2.inRange(hsv_image, LOWER_COLOR_YELLOW, UPPER_COLOR_YELLOW)