python 读取摄像头数据并保存的实例

yipeiwu_com5年前Python基础

如下所示:

import cv2

cap = cv2.VideoCapture(0)

k = 0 
while k != 27: # esc 
ret, img = cap.read(0) 
cv2.imshow(‘233', img) 
k = cv2.waitKey(20) & 0xff

print( ‘begin to record images…' )

for ii in range(1000): 
ret, img = cap.read(0) 
cv2.imshow(‘233', img) 
cv2.imwrite(‘imaged%04d.jpg'%(ii), img) 
cv2.waitKey(20)

以上这篇python 读取摄像头数据并保存的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持【听图阁-专注于Python设计】。

相关文章

Python 矩阵转置的几种方法小结

我就废话不多说了,直接上代码吧! #Python的matrix转置 matrix = [[1,2,3,4],[5,6,7,8],[9,10,11,12]] def printma...

Python 根据数据模板创建shapefile的实现

废话不多说,我就直接上代码让大家看看吧! #!/usr/bin/env python # -*- coding: utf-8 -*- # @File : copyShapefile....

python 网络编程常用代码段

python 网络编程常用代码段

服务器端代码: # -*- coding: cp936 -*- import socket sock = socket.socket(socket.AF_INET, socket....

python中关于时间和日期函数的常用计算总结(time和datatime)

1.获取当前时间的两种方法: 复制代码 代码如下:import datetime,timenow = time.strftime("%Y-%m-%d %H:%M:%S")print no...

pandas的排序和排名的具体使用

有的时候我们可以要根据索引的大小或者值的大小对Series和DataFrame进行排名和排序。 一、排序 pandas提供了sort_index方法可以根据行或列的索引按照字典的顺序进...