1 Star 0 Fork 0

wdc/Python001

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webcam.py 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
lamone 提交于 2020-03-19 01:25 . Add recording capabilities
# Requirements:
# pip install numpy
# sudo apt-get install python-openCV
# Program:
# opens your webcam, and records.
import cv2
cap = cv2.VideoCapture(0)
# Obtain resolutions, convert resolutions from float to integer
frames_width = int(cap.get(3))
frames_height = int(cap.get(4))
# Specify the video codec
# FourCC is plateform dependent, however MJPG is a safe choice.
fourcc = cv2.VideoWriter_fourcc(*'MJPG')
# Create video writer object. Save file to recording.avi
out = cv2.VideoWriter('recording.avi', fourcc, 20.0, (frames_width, frames_height))
while (True):
# Capture frame-by-frame
ret, frame = cap.read()
if ret == True:
# Write frame to recording.avi
out.write(frame)
# Our operations on the frame come here
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
# Display the resulting frame
cv2.imshow('frame', gray)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
# When everything done, release the capture and video writer
cap.release()
out.release()
cv2.destroyAllWindows()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ijiwei/Python001.git
git@gitee.com:ijiwei/Python001.git
ijiwei
Python001
Python001
master

搜索帮助