-
Notifications
You must be signed in to change notification settings - Fork 0
/
opencvVideo.py
35 lines (31 loc) · 1 KB
/
opencvVideo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
"""
Modified on Feb 20 2020
@author: [email protected]
"""
import numpy as np
import cv2
cap = cv2.VideoCapture(0)
# Define the codec and create VideoWriter object
# fourcc = cv2.VideoWriter_fourcc(*'XVID')
# fourcc = cv2.VideoWriter_fourcc(*'MJPG')
# out = cv2.VideoWriter('output.avi',fourcc, 20.0, (640,480))
WindowName="Main View"
cv2.namedWindow(WindowName, cv2.WINDOW_NORMAL)
#cv2.setWindowProperty(WindowName,cv2.WND_PROP_FULLSCREEN,cv2.WINDOW_FULLSCREEN)
#cv2.setWindowProperty(WindowName,cv2.WND_PROP_FULLSCREEN,cv2.WINDOW_NORMAL)
while(cap.isOpened()):
ret, frame = cap.read()
if ret == True:
# frame = cv2.flip(frame, 0)
# write the flipped frame
# out.write(frame)
cv2.namedWindow(WindowName, cv2.WINDOW_NORMAL)
cv2.imshow(WindowName, frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
else:
break
# Release everything if job is finished
cap.release()
# out.release()
cv2.destroyAllWindows()