本文实例为大家分享了python opencv摄像头应用的具体代码,供大家参考,具体内容如下
1、安装
下载安装包
1
|
pip install opencv_python - 2.4 . 12 - cp27 - none - win_amd64.whl
|
2、代码
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
|
#coding=utf-8
import cv2
import time
cap = cv2.videocapture( 0 )
#读取摄像头,0表示系统默认摄像头
while true:
ret,photo = cap.read()
#读取图像
cv2.imshow( 'please take your photo!!' ,photo)
#将图像传送至窗口
key = cv2.waitkey( 2 )
#设置等待时间,若数字为0则图像定格
if key = = ord ( " " ):
#按空格获取图像
filename = time.strftime( '%y%m%d-%h%m%s' ) + ".jpg"
#以当前时间存储
cv2.imwrite(filename,photo)
#保存位置
if key = = ord ( "q" ):
#按“q”退出程序
break
|
3、效果如下图
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/TT_258/article/details/51366416