Skip to content

Commit 986a502

Browse files
committed
Fixes a very weird bug related to lazy picamera import
1 parent 7416bf9 commit 986a502

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/ethoscope/hardware/input/cameras.py

+8-7
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@
1212
except ImportError:
1313
from cv2 import CAP_PROP_FRAME_WIDTH, CAP_PROP_FRAME_HEIGHT, CAP_PROP_FRAME_COUNT, CAP_PROP_POS_MSEC, CAP_PROP_FPS
1414

15+
try:
16+
import picamera
17+
USE_PICAMERA2 = False
18+
except:
19+
import picamera2
20+
USE_PICAMERA2 = True
21+
1522
import time, datetime
1623
import logging
1724
import os
@@ -590,13 +597,7 @@ def __init__(self, target_fps=20, target_resolution=(1280, 960), video_prefix=No
590597
"""
591598
self.canbepickled = True #cv2.videocapture object cannot be serialized, hence cannot be picked
592599
self.isPiCamera = True
593-
594-
try:
595-
import picamera
596-
self._frame_grabber_class = PiFrameGrabber
597-
except:
598-
import picamera2
599-
self._frame_grabber_class = PiFrameGrabber2
600+
self._frame_grabber_class = PiFrameGrabber2 if USE_PICAMERA2 else PiFrameGrabber
600601

601602
w,h = target_resolution
602603
if not isinstance(target_fps, int):

0 commit comments

Comments
 (0)