通过 Python 获取摄像头数据

环境配置

程序实现

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /etc/bin/env python
# -*- coding:utf-8 -*-

'Capture'

__author__ = 'Gao Yuhao'

from VideoCapture import Device
import time
camera = Device(devnum = 1, showVideoWindow = 0)
i = 0
while 1:
camera.saveSnapshot('snapshot.jpg',timestamp = 3, boldfont = 1)
i += 1
print i
time.sleep(3)

TODO

  • 考虑通过某种形式实现远程监控
  • 增加更多功能,如保存多张图片

通过 Python 获取摄像头数据
https://blog.yuhaogao.com/2016/07/19/通过-Python-获取摄像头数据/
作者
宇皓
发布于
2016年7月19日
许可协议