1 Star 0 Fork 0

wadas/python-opencv

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ReadImageVideoCapture.py 628 Bytes
一键复制 编辑 原始数据 按行查看 历史
wadas 提交于 2020-09-15 10:24 . 摄像头读取 & 保存图像
import cv2
cap = cv2.VideoCapture(0)
width = 1920
height = 1080
cap.set(cv2.CAP_PROP_FRAME_WIDTH, width) #设置宽度
cap.set(cv2.CAP_PROP_FRAME_HEIGHT, height) #设置长度
n = 0
while True:
ret, frame = cap.read()
if ret:
cv2.imshow("Frame", frame)
key = cv2.waitKey(1) & 0xFF
# 检测键盘输入拍照
if key == ord('s'):
img = 'images/hand_pose_' + str(n) + '.jpg'
cv2.imwrite(img, frame)
print("[Saved Image at (%s)]" % img)
n+=1
if key == 27:
break
cap.release()
cv2.destroyAllWindows()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wadas/python-opencv.git
git@gitee.com:wadas/python-opencv.git
wadas
python-opencv
python-opencv
master

搜索帮助