ventana sprites set_alpha pantalla insertar imagenes imagen ejecutar crear python pygame

python - set_alpha - sprites en pygame



¿Cómo mostrar la imagen en pygame? (1)

Tienes que decirle a pygame que actualice la pantalla .

Agregue la siguiente línea en su ciclo después de ajustar la imagen a la pantalla:

pygame.display.flip()

Por cierto, es probable que desee limitar la cantidad de imágenes que toma por segundo. O use time.sleep o un reloj de 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

Quiero cargar una imagen de la webcam para mostrar en pygame Estoy usando videocapture

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)

¿Por qué esto no funciona? ¿Se abre la ventana del juego de juegos pero no se muestra nada?