Skip to content

Commit 88907ae

Browse files
committed
First Stable Version (DriveTrain is functional)
2 parents 567f144 + 751ce10 commit 88907ae

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

vision/camTest.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
test cole
1+
<<<<<<< HEAD
2+
test cole
3+
=======
4+
Cole TODO
5+
- Cam test file
6+
testdev
7+
>>>>>>> 751ce10b8bb3bc21570216213407e6a43fa2522e

0 commit comments

Comments
 (0)