我想从网络摄像头加载图像显示在我使用videocapture pygame的
from VideoCapture import Device
import pygame
import time
In=1
pygame.init()
w = 640
h = 480
size=(w,h)
screen = pygame.display.set_mode(size)
while True:
cam = Device()
cam.saveSnapshot(str(In)+".jpg")
img=pygame.image.load(In)
screen.blit(img,(0,0))
In=int(In)+1
In=str(In)
为什么这不是work.Pygame窗口打开,但没有显示?
你必须告诉pygame的,以更新显示 。
在循环中添加以下行块传输图像到屏幕后:
pygame.display.flip()
顺便说一句,你可能想限制你每秒钟多少图像取。 无论是使用time.sleep
或pygame的时钟 。
from VideoCapture import Device
import pygame
import time
In=1
pygame.init()
w = 640
h = 480
size=(w,h)
screen = pygame.display.set_mode(size)
c = pygame.time.Clock() # create a clock object for timing
while True:
cam = Device()
filename = str(In)+".jpg" # ensure filename is correct
cam.saveSnapshot(filename)
img=pygame.image.load(filename)
screen.blit(img,(0,0))
pygame.display.flip() # update the display
c.tick(3) # only three images per second
In += 1