diff options
| author | Scott Gasch <[email protected]> | 2022-02-15 10:24:51 -0800 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-02-15 10:24:51 -0800 |
| commit | ceeb92a63c65599ec4e8b21549ec5320378aca43 (patch) | |
| tree | 9eb238637af55db67e968a0acf1513d510a3969e | |
| parent | 322c0be2cc5266fadd5bac90cf1082ba66611a92 (diff) | |
Fix a bug in sanity check image.
| -rw-r--r-- | camera_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
