I want to be able to take a photo from a webcam in python 3 and Windows. Are there any modules that support it? I have tried pygame, but it is only linux and python 2, and VideoCapture is only python 2.
I've been looking for the same thing and so far I have come up with a blank. This is what I have so far:
2.7 3.2 3.3 3.4 LINUX WIN32 ------------------------------------------------------- OpenCV YES - - - YES YES PyGame YES YES YES YES YES YES SimpleCV YES - - - YES YES VideoCapture YES - - - - YES
Resources
07/08/14
Pygame 3.4 Ver. is released
http://www.youtube.com/watch?v=SqmSpJfN7OE
http://www.lfd.uci.edu/~gohlke/pythonlibs/
You can download "pygame‑1.9.2a0.win32‑py3.4.exe"
take a photo from a webcam in python 3.4 (testing on window 7) code [1]
import pygame
import pygame.camera
pygame.camera.init()
cam = pygame.camera.Camera(0,(640,480))
cam.start()
img = cam.get_image()
pygame.image.save(img,"filename.jpg")
refer to
[1] Capturing a single image from my webcam in Java or Python
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With