From ceeb92a63c65599ec4e8b21549ec5320378aca43 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Tue, 15 Feb 2022 10:24:51 -0800 Subject: [PATCH] Fix a bug in sanity check image. --- camera_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/camera_utils.py b/camera_utils.py index 99ccdb3..9e17c42 100644 --- a/camera_utils.py +++ b/camera_utils.py @@ -32,8 +32,8 @@ class RawJpgHsv: class SanityCheckImageMetadata: """Is a Blue Iris image bad (big grey borders around it) or infrared?""" - is_bad_image: bool = False is_infrared_image: bool = False + is_bad_image: bool = False def sanity_check_image(hsv: np.ndarray) -> SanityCheckImageMetadata: -- 2.45.2