一哥第一卷感叹,这家奥地利~。这是什么g8事件,近盲目安装3g的OpenCV,结果徒劳。

入题。!环境Python2.7

严厉格按照什么步骤。必成功:

所需的软件如下面:

VideoCapture:  http://videocapture.sourceforge.net/VideoCapture-0.9-5.zip

MyEclipse 插件PyDev: http://ncu.dl.sourceforge.net/project/pydev/pydev/PyDev%202.7.1/PyDev%202.7.1.zip

PIL : http://effbot.org/media/downloads/PIL-1.1.7.win32-py2.7.exe

1.      VideoCapture解压后,找到Python27。把里面的东西拷贝到自己安装Python相应文件夹中。建议把Python27外面的src tools啥的仅仅要相应的都复制过去。

2.      PIL直接安装就可以

3.      PyDev解压后直接拷贝到MyEclipse中的dropins。这里的环境配置网上一抓一大把。

环境准备完毕。代码例如以下:

fromVideoCapture import Device

importtime, string

interval= 2

cam =Device(devnum=0, showVideoWindow=0)

#cam.setResolution(648,480)

cam.saveSnapshot('image.jpg',timestamp=3, boldfont=1, quality=75)

i = 0

quant =interval * .1

starttime= time.time()

while 1:

lasttime = now = int((time.time() -starttime) / interval)

print i

cam.saveSnapshot('image.jpg', timestamp=3,boldfont=1)

i += 1

while now == lasttime:

now = int((time.time() - starttime) /interval)

time.sleep(quant)

直接运行就可以。

试执行,哈哈:

具体解释及延伸:

对于DEVICE的各项參数解释官档解释例如以下:

class Device:

"""Create instances of this class which will then representvideo devices.

    For the lifetime of the instance, thedevice is blocked, so it can not be

    used by other applications (which is quitenormal Windows behavior).

    If you want to access the device fromanother program, you have to delete

    the instance first (e.g. del cam).

    """

, showVideoWindow=):

"""devnum: VideoCapture enumerates the available video capture devices

                    on your system.  If you have more than one device, specify

                    the desired one here.  The device number starts from 0.

           showVideoWindow: 0 ... do notdisplay a video window (the default)

                            1 ... display avideo window

                            Mainly used fordebugging, since the video window

                            can not be closedor moved around.

saveSnapshot的各项參数解释例如以下:

, boldfont=,textpos=default_textpos, **keywords):

"""Saves a snapshot to the
harddisk.

        The filetype depends on thefilename extension.  Everything that PIL

        can handle can be specified (foo.jpg,foo.gif, foo.bmp, ...).

        filename:   String containing the name of the resultingfile.

        timestamp:  see getImage()

        boldfont:   see getImage()

        textpos:    see getImage()

        Additional keyword arguments can begive which are just passed to the

        save() method of the Image class.  For example you can specify the

        compression level of a JPEG image byquality=75 (which is the default

        value anyway).

getImage的各项參数解释例如以下:

, boldfont=, textpos=default_textpos):

"""Returns a PIL Image instance.

        timestamp:  0 ... no
timestamp (the default)

                    1 ... simple
timestamp

                    2 ... timestamp withshadow

                    3 ... timestamp withoutline

        boldfont:   0 ... normal font (the default)

                    1 ... bold font

        textpos:    The position of the
timestamp can bespecified by a string

                    containing a combination oftwo characters.  One character

                    must be either t or b, theother one either l, c or r.

                    t ... top

                    b ... bottom

                    l ... left

                    c ... center

                    r ... right

                    The default value is 'bl'

自己写的助于理解上述程序的程序:

import time

a=2

b=a*.1

i=0

print b

stime = time.time()

print stime

m=2

while m>i:

lasttime = now = int((time.time()-stime)/a)

print ('i is: %s') %i

i+=1

print '进入while循环'

while now ==lasttime:

now = int((time.time()-stime)/a)

print (time.time()-stime)/a

print ('now is: %s') %now

print ('lasttime is: %s') %lasttime

if now ==lasttime:

print ('lasttime == now')

else:

print ('lasttime 不等于 now')

time.sleep(b)

print '休眠%s第二' %b

版权声明:本文博主原创文章。博客,未经同意不得转载。

Python 相机镜头的更多相关文章

  1. Python中的多进程与多线程(一)

    一.背景 最近在Azkaban的测试工作中,需要在测试环境下模拟线上的调度场景进行稳定性测试.故而重操python旧业,通过python编写脚本来构造类似线上的调度场景.在脚本编写过程中,碰到这样一个 ...

  2. Python高手之路【六】python基础之字符串格式化

    Python的字符串格式化有两种方式: 百分号方式.format方式 百分号的方式相对来说比较老,而format方式则是比较先进的方式,企图替换古老的方式,目前两者并存.[PEP-3101] This ...

  3. Python 小而美的函数

    python提供了一些有趣且实用的函数,如any all zip,这些函数能够大幅简化我们得代码,可以更优雅的处理可迭代的对象,同时使用的时候也得注意一些情况   any any(iterable) ...

  4. JavaScript之父Brendan Eich,Clojure 创建者Rich Hickey,Python创建者Van Rossum等编程大牛对程序员的职业建议

    软件开发是现时很火的职业.据美国劳动局发布的一项统计数据显示,从2014年至2024年,美国就业市场对开发人员的需求量将增长17%,而这个增长率比起所有职业的平均需求量高出了7%.很多人年轻人会选择编 ...

  5. 可爱的豆子——使用Beans思想让Python代码更易维护

    title: 可爱的豆子--使用Beans思想让Python代码更易维护 toc: false comments: true date: 2016-06-19 21:43:33 tags: [Pyth ...

  6. 使用Python保存屏幕截图(不使用PIL)

    起因 在极客学院讲授<使用Python编写远程控制程序>的课程中,涉及到查看被控制电脑屏幕截图的功能. 如果使用PIL,这个需求只需要三行代码: from PIL import Image ...

  7. Python编码记录

    字节流和字符串 当使用Python定义一个字符串时,实际会存储一个字节串: "abc"--[97][98][99] python2.x默认会把所有的字符串当做ASCII码来对待,但 ...

  8. Apache执行Python脚本

    由于经常需要到服务器上执行些命令,有些命令懒得敲,就准备写点脚本直接浏览器调用就好了,比如这样: 因为线上有现成的Apache,就直接放它里面了,当然访问安全要设置,我似乎别的随笔里写了安全问题,这里 ...

  9. python开发编译器

    引言 最近刚刚用python写完了一个解析protobuf文件的简单编译器,深感ply实现词法分析和语法分析的简洁方便.乘着余热未过,头脑清醒,记下一点总结和心得,方便各位pythoner参考使用. ...

随机推荐

  1. ACM/ICPM2014鞍山现场赛D Galaxy (HDU 5073)

    题目链接:pid=5073">http://acm.hdu.edu.cn/showproblem.php?pid=5073 题意:给定一条线上的点,然后能够去掉当中的m个,使剩下的到重 ...

  2. .Net程序猿玩转Android开发---(7)相对布局RelativeLayout

                 相对布局RelativeLayout是Android布局中一个比較经常使用的控件,使用该控件能够布局出适合各种屏幕分辨率的布局,RelativeLayout採用相对位置进行 ...

  3. windows phone (25) Canvas元素B

    原文:windows phone (25) Canvas元素B  ZIndex 这也是一个附加属性,表示canvas的children集合内的子元素的显示顺序,在canvas中的元素默认情况下是后面的 ...

  4. 解决ubuntu 14.04在显示屏电缆被拔出的问题

    我是一个ubuntu14.04和win7双系统.于win在正常的网络.但在ubuntu网络连接有一直显示线被拔掉,您只能连接到无线Wi-Fi,没有有线网络. 关于这个问题,,最终找到的一种方式,这是进 ...

  5. Visual Studio 有哪些好用的插件?

    推荐一批绝大部分都是免费的能较好增强写代码舒适度的. .NET Demon -- (非免费)安装后可以连续编译, 如果不买License的话过期后也还有代码改动后自动保存的上好功能, 安装它之后再也不 ...

  6. Python re正则表达式

    参考: 博客园<Python正則表達式指南> 博客园<Python之re模块> 在此感谢博主的无私奉献,本文主要介绍python中re模块的几个简单使用方法.具体的使用方法请參 ...

  7. c++学习笔记4,调用派生类的顺序构造和析构函数(一个)

    测试源代码: //測试派生类的构造函数的调用顺序何时调用 //Fedora20 gcc version=4.8.2 #include <iostream> using namespace ...

  8. 探索Android该Parcel机制(上)

    一.先从Serialize说起 我们都知道JAVA中的Serialize机制,译成串行化.序列化……,其作用是能将数据对象存入字节流其中,在须要时又一次生成对象. 主要应用是利用外部存储设备保存对象状 ...

  9. table 谷歌下不出现滚动条

    <table> </table> <style> table {overflow-y:scroll;max-height:152px; height:auto;} ...

  10. 数据结构之计算器的实现(JAVA)(四)

    原理: 1.将中序表达式变化兴许表达式 2.当前字符为数字,将该数字放入栈中 3.当前字符为操作符,从栈中取出两个树,依据操作符来运算,将运算结果放入到栈中 4.反复,直到将字符操作完.此时栈中仅仅剩 ...