通过 Python 获取摄像头数据 环境配置 Python 2.7+ VideoCapture-0.9-5 PIL(Python Imaging Library) PIL 1.1.7 win32 | PIL 1.1.7 amd64 程序实现12345678910111213141516#! /etc/bin/env python# -*- coding:utf-8 -*-'Capture'__author__ = 'Gao Yuhao'from VideoCapture import Deviceimport timecamera = Device(devnum = 1, showVideoWindow = 0)i = 0while 1: camera.saveSnapshot('snapshot.jpg',timestamp = 3, boldfont = 1) i += 1 print i time.sleep(3) TODO 考虑通过某种形式实现远程监控 增加更多功能,如保存多张图片 技术文档 #Python #摄像头 #监控 通过 Python 获取摄像头数据 https://blog.yuhaogao.com/2016/07/19/通过-Python-获取摄像头数据/ 作者 宇皓 发布于 2016年7月19日 许可协议 重构人人贷爬虫程序(released) 上一篇 系统安装及升级攻略 下一篇 Please enable JavaScript to view the comments