MyTetra Share
Делитесь знаниями!
Запись видео
Время создания: 21.06.2017 21:34
Раздел: Python - Модули - OpenCV - video
Запись: xintrea/mytetra_db_mcold/master/base/1498070074fb0uxgcb83/text.html на raw.githubusercontent.com
import numpy as np
import cv2

cap = cv2.VideoCapture(
0)

# Define the codec and create VideoWriter object
fourcc = cv2.VideoWriter_fourcc(*'XVID')
out = cv2.VideoWriter(
'output.avi',fourcc, 20.0, (640,480))

while(cap.isOpened()):
ret, frame = cap.read()
if ret==True:
frame = cv2.flip(frame,
0)

# write the flipped frame
out.write(frame)

cv2.imshow(
'frame',frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
else
:
break

# Release everything if job is finished
cap.release()
out.release()
cv2.destroyAllWindows()
 
MyTetra Share v.0.59
Яндекс индекс цитирования