We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15867b4 commit e26ec1aCopy full SHA for e26ec1a
capture_video.py
@@ -47,17 +47,7 @@
47
48
# define video capture object
49
50
-try:
51
- # to use a non-buffered camera stream (via a separate thread)
52
-
53
- import camera_stream
54
- cap = camera_stream.CameraVideoStream(use_tapi=False)
55
56
-except BaseException:
57
- # if not then just use OpenCV default
58
59
- print("INFO: camera_stream class not found - camera input may be buffered")
60
- cap = cv2.VideoCapture()
+cap = cv2.VideoCapture()
61
62
# define display window name
63
0 commit comments