首页 > 编程 > Python > 正文

python 简单照相机调用系统摄像头实现方法 pygame

2020-01-04 14:53:05
字体:
来源:转载
供稿:网友

如下所示:

# -*- coding: utf-8 -*-   from VideoCapture import Device import time import pygame from pygame.locals import *import sys  pygame.init()  size = width, height = 620, 485 print sizespeed = [2, 2] black = 0, 0, 0 if pygame.display.get_init(): print ("inited")else: print"notinit"pygame.display.set_caption('1111') screen = pygame.display.set_mode((600,500))  SLEEP_TIME_LONG = 0.0  cam = Device(devnum=0, showVideoWindow=0) print cam  filename = "test.jpg"while True:  for event in pygame.event.get():   if event.type== QUIT:    sys.exit()   elif event.type== KEYDOWN:    key = pygame.key.get_pressed()    if key[97]:     filename = "test" + int(time.time()//1).__str__()+".jpg"     print filename     cam.saveSnapshot(filename, timestamp=3, boldfont=1, quality=55)    elif event.type== MOUSEBUTTONDOWN:    pass   elif event.type== MOUSEMOTION:    pass   elif event.type== MOUSEBUTTONUP:    pass      #cam.getImage(0, 0, "bl")  cmd="shut" Image = pygame.image.load(filename) #screen.fill(0,0,200) screen.blit(Image, (0,0)) pygame.display.update()      time.sleep(SLEEP_TIME_LONG) 

python,照相机,摄像头,pygame

python,照相机,摄像头,pygame

以上这篇python 简单照相机调用系统摄像头实现方法 pygame就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持VEVB武林网。


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表