X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;ds=inline;f=camera_utils.py;fp=camera_utils.py;h=799efd35d19fa39a7879c6c0851f9e697704927b;hb=17e8082381dbbf691dfb19fb1b38a97e48d6ab87;hp=204a3374a78e3521daba62447644b39ea67b7bc5;hpb=bb3ebebb1a2458fa52b042b35d8e5fbad408ff80;p=python_utils.git diff --git a/camera_utils.py b/camera_utils.py index 204a337..799efd3 100644 --- a/camera_utils.py +++ b/camera_utils.py @@ -20,6 +20,7 @@ logger = logging.getLogger(__name__) class RawJpgHsv(NamedTuple): """Raw image bytes, the jpeg image and the HSV (hue saturation value) image.""" + raw: Optional[bytes] jpg: Optional[np.ndarray] hsv: Optional[np.ndarray] @@ -27,12 +28,14 @@ class RawJpgHsv(NamedTuple): class SanityCheckImageMetadata(NamedTuple): """Is a Blue Iris image bad (big grey borders around it) or infrared?""" + is_bad_image: bool is_infrared_image: bool def sanity_check_image(hsv: np.ndarray) -> SanityCheckImageMetadata: """See if a Blue Iris or Shinobi image is bad and infrared.""" + def is_near(a, b) -> bool: return abs(a - b) < 3 @@ -44,12 +47,12 @@ def sanity_check_image(hsv: np.ndarray) -> SanityCheckImageMetadata: for c in range(cols): pixel = hsv[(r, c)] if ( - is_near(pixel[0], 16) and - is_near(pixel[1], 117) and - is_near(pixel[2], 196) + is_near(pixel[0], 16) + and is_near(pixel[1], 117) + and is_near(pixel[2], 196) ): weird_orange_count += 1 - elif (is_near(pixel[0], 0) and is_near(pixel[1], 0)): + elif is_near(pixel[0], 0) and is_near(pixel[1], 0): hs_zero_count += 1 logger.debug(f"hszero#={hs_zero_count}, weird_orange={weird_orange_count}") return SanityCheckImageMetadata( @@ -160,17 +163,13 @@ def fetch_camera_image_from_rtsp_stream( def _fetch_camera_image( camera_name: str, *, width: int = 256, quality: int = 70 ) -> RawJpgHsv: - """Fetch a webcam image given the camera name. - - """ + """Fetch a webcam image given the camera name.""" logger.debug("Trying to fetch camera image from video server") raw = fetch_camera_image_from_video_server( camera_name, width=width, quality=quality ) if raw is None: - logger.debug( - "Reading from video server failed; trying direct RTSP stream" - ) + logger.debug("Reading from video server failed; trying direct RTSP stream") raw = fetch_camera_image_from_rtsp_stream(camera_name, width=width) if raw is not None and len(raw) > 0: tmp = np.frombuffer(raw, dtype="uint8") @@ -199,4 +198,5 @@ def fetch_camera_image( if __name__ == '__main__': import doctest + doctest.testmod()