Module for grabbing live video images using DirectShow
Project description
python_grabber
This is a Python library that enables you to use video cameras from Python on Windows. It is based on DirectShow. In particular, it allows to:
- Capture photos from a video camera
- View installed cameras on a system
- Set the camera options
- Save a vide captured from a camera
The library is available on PyPI: https://pypi.org/project/pygrabber/0.1/
Basic example
# This code lists the cameras connected to your PC:
from pygrabber.dshow_graph import FilterGraph
graph = FilterGraph()
print(graph.get_input_devices())
Save images example
# Captures a frame from the first camera found on your computer every second and saves it to a file
import cv2
from datetime import datetime
from threading import Event, Thread
from pygrabber.dshow_graph import FilterGraph
from os import path
PAUSE_BETWEEN_CAPTURE = 1 # 1 sec.
OUTPUT_FOLDER = r"C:\test\\"
CAMERA_INDEX = 0 # Using first camera found
global start_time
def capture_photos_loop(event_):
global start_time
start_time = datetime.now()
while not event_.isSet():
graph.grab_frame()
event_.wait(PAUSE_BETWEEN_CAPTURE)
def show_image(image):
global start_time
capture_time = datetime.now() - start_time
image_file_name = path.join(OUTPUT_FOLDER, str(capture_time.seconds * 1000 + int(capture_time.microseconds / 1000)) + ".jpg")
cv2.imwrite(image_file_name, image)
print(f"Image {image_file_name} written")
if __name__ == "__main__":
event = Event()
capture_thread = Thread(target=capture_photos_loop, args=(event, ))
graph = FilterGraph()
devices = graph.get_input_devices()
print(f"Connecting to device {devices[CAMERA_INDEX]}")
graph.add_video_input_device(CAMERA_INDEX)
graph.add_sample_grabber(lambda image: show_image(image))
graph.add_null_render()
graph.prepare_preview_graph()
graph.run()
capture_thread.start()
input(f"Capturing images every {PAUSE_BETWEEN_CAPTURE}s, press ENTER to terminate.")
event.set()
capture_thread.join()
print("Done")
View live video example
# This code shows a screen with the live image from the first camera in your PC.
# We add to the graph two filters: one is a source filter corresponding to the first camera connected to your PC,
# the second is the default render, that shows the images from the camera in a window on the screen.
# Then we call prepare, that connects the two filters together, and run, to execute the graph.
# Finally, we need a method to pause the program while watching the camera video.
# I use the Tkinter mainloop function which fetches and handles Windows events, so the application does't seem frozen.
from pygrabber.dshow_graph import FilterGraph
from tkinter import Tk
graph = FilterGraph()
graph.add_video_input_device(0)
graph.add_default_render()
graph.prepare_preview_graph()
graph.run()
root = Tk()
root.withdraw() # hide Tkinter main window
root.mainloop()
See also the other examples on the "examples" folder and the article https://www.codeproject.com/Articles/1274094/%2FArticles%2F1274094%2FCapturing-images-from-camera-using-Python-and-Dire.
Sample GUI application
The file run_gui.py will run a tool with a GUI that enables you to use a camera connected to your system, capture still frames or videos, do basic image porcessing.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pygrabber-0.2.tar.gz
.
File metadata
- Download URL: pygrabber-0.2.tar.gz
- Upload date:
- Size: 18.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e584b119d4c9b9a8f339eb34d1fe7fdd16214a2bf5a1876171145caebdb9e413 |
|
MD5 | 16d2692e3d8ab300f4baf2e025a0c06f |
|
BLAKE2b-256 | d424e7e5efa1d915853f3f34cedf751cbee9d88bee47a41122d495ee95452dad |
File details
Details for the file pygrabber-0.2-py3-none-any.whl
.
File metadata
- Download URL: pygrabber-0.2-py3-none-any.whl
- Upload date:
- Size: 24.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ac8bbe5f6a5dfb7c1c9c55d80ca9b9457743abd3ac8efa21cb9e302bdbf03ac |
|
MD5 | b93af02e3e57f5ecce1116b289b1c8fd |
|
BLAKE2b-256 | 7a510359e171686a7eeda5e975d7f9dfba6a67e04b33c7ddad1f7a343c171e55 |