From: Scott Gasch Date: Tue, 15 Feb 2022 18:24:51 +0000 (-0800) Subject: Fix a bug in sanity check image. X-Git-Url: https://wannabe.guru.org/gitweb/?a=commitdiff_plain;h=ceeb92a63c65599ec4e8b21549ec5320378aca43;p=python_utils.git Fix a bug in sanity check image. --- 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: