3

カメラのスクリーンショットをファイルに保存しようとしています。Windows 8でPython 2.7 32ビットとpygame 1.9 32ビットを使用しています。この問題をグーグルで検索したところ、オンラインであまり見つかりませんでした。

これが私のコードです:

import pygame
import pygame.camera
import sys

pygame.camera.init()
pygame.display.set_mode((800, 600))
cameraCount = len(pygame.camera.list_cameras())
if cameraCount < 1:
    print "No cameras found!"
    raw_input()
    sys.exit(0)

x = 0

if cameraCount > 1:
    print "Multiple cameras found, choose a number 0 through ", cameraCount
    x = -1
    while int(x) > cameraCount or int(x) < 0:
        x = raw_input()

cam = pygame.camera.Camera(x)
cam.start()
snapshot = cam.get_image()
pygame.image.save(snapshot, "testing.png")
print "done!"
raw_input()

そして、ここに私が受け取っているエラーがあります:

Traceback (most recent call last):
  File "C:\Users\Cody\Desktop\Python\cameraa.py", line 21, in <module>
    cam = pygame.camera.Camera(x)
  File "C:\Python27\lib\site-packages\pygame\_camera_vidcapture.py", line 52, in
 __init__
    self.dev.setresolution(width, height)
vidcap.Error: Cannot set capture resolution.

ウェブカメラでサポートされている解像度のリストを見つけて、それぞれ 1 回ずつ試しましたが、どれも機能しませんでした。

どんな助けでも大歓迎です、ありがとう。

4

0 に答える 0