Add new video files and one python test file

This commit is contained in:
Katarzyna Kaczyńska 2020-01-11 07:40:21 +01:00
parent 796eac0ac8
commit 5c71bfcd83
9 changed files with 21 additions and 0 deletions

21
camera-test2.py Normal file
View File

@ -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()

BIN
recordings/test2.webm Normal file

Binary file not shown.

BIN
recordings/test3.webm Normal file

Binary file not shown.

BIN
recordings/test4.webm Normal file

Binary file not shown.

BIN
recordings/test5.webm Normal file

Binary file not shown.

BIN
recordings/test6.webm Normal file

Binary file not shown.

BIN
recordings/test7.mp4 Normal file

Binary file not shown.

BIN
recordings/test8.mp4 Normal file

Binary file not shown.

BIN
recordings/test9.mp4 Normal file

Binary file not shown.