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.
2 parents 567f144 + 751ce10 commit 88907aeCopy full SHA for 88907ae
vision/camTest.py
@@ -0,0 +1,15 @@
1
+import numpy as np
2
+import cv2
3
+
4
+cap = cv2.VideoCapture(0)
5
6
+while True:
7
+ ret, frame = cap.read()
8
9
+ cv2.imshow('frame', frame)
10
+ if cv2.waitKey(1) & 0xFF == ord('q'):
11
+ break
12
13
+# When everything done, release the capture
14
+cap.release()
15
+cv2.destroyAllWindows()
vision/vision.txt
@@ -1 +1,7 @@
-test cole
+<<<<<<< HEAD
+test cole
+=======
+Cole TODO
+ - Cam test file
+testdev
+>>>>>>> 751ce10b8bb3bc21570216213407e6a43fa2522e
0 commit comments