diff --git a/camera-test2.py b/camera-test2.py new file mode 100644 index 0000000..2d3f3f6 --- /dev/null +++ b/camera-test2.py @@ -0,0 +1,21 @@ +import numpy as np +import cv2 + +cap = cv2.VideoCapture(0) + +while(True): + # Capture frame-by-frame + ret, frame = cap.read() + + # Our operations on the frame come here + gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) + + # Display the resulting frame + cv2.imshow('frame',frame) + cv2.imshow('gray',gray) + if cv2.waitKey(20) & 0xFF == ord('q'): + break + +# When everything done, release the capture +cap.release() +cv2.destroyAllWindows() \ No newline at end of file diff --git a/recordings/test2.webm b/recordings/test2.webm new file mode 100644 index 0000000..9110e05 Binary files /dev/null and b/recordings/test2.webm differ diff --git a/recordings/test3.webm b/recordings/test3.webm new file mode 100644 index 0000000..941b068 Binary files /dev/null and b/recordings/test3.webm differ diff --git a/recordings/test4.webm b/recordings/test4.webm new file mode 100644 index 0000000..4378bc1 Binary files /dev/null and b/recordings/test4.webm differ diff --git a/recordings/test5.webm b/recordings/test5.webm new file mode 100644 index 0000000..ebb8b6e Binary files /dev/null and b/recordings/test5.webm differ diff --git a/recordings/test6.webm b/recordings/test6.webm new file mode 100644 index 0000000..73a41d3 Binary files /dev/null and b/recordings/test6.webm differ diff --git a/recordings/test7.mp4 b/recordings/test7.mp4 new file mode 100644 index 0000000..a5963cb Binary files /dev/null and b/recordings/test7.mp4 differ diff --git a/recordings/test8.mp4 b/recordings/test8.mp4 new file mode 100644 index 0000000..0e2ab04 Binary files /dev/null and b/recordings/test8.mp4 differ diff --git a/recordings/test9.mp4 b/recordings/test9.mp4 new file mode 100644 index 0000000..5615caa Binary files /dev/null and b/recordings/test9.mp4 differ