https://github.com/almarklein/cmu1394
Automatically exported from code.google.com/p/cmu1394
https://github.com/almarklein/cmu1394
Last synced: about 1 year ago
JSON representation
Automatically exported from code.google.com/p/cmu1394
- Host: GitHub
- URL: https://github.com/almarklein/cmu1394
- Owner: almarklein
- Created: 2015-03-14T21:26:50.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-03-14T21:41:05.000Z (about 11 years ago)
- Last Synced: 2025-01-07T05:28:34.671Z (over 1 year ago)
- Language: C
- Size: 258 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cmu1394
(Migrated from code.google.com/p/cmu1394)
The CMU 1394camera driver is an open source driver for firewire cameras on Windows: http://www.cs.cmu.edu/~iwan/1394/
This package wraps this driver using Cython to expose a Python interface to your camera.
## Example
from cmu1394 import get_cameras
# Get list of currently connected cameras.
cam_list = get_cameras()
# Get instance of first camera (assuming at least one camera)
cam = cam_list[0]
# Print description
print(cam.description())
# Set format
cam.set_format('800x600 Mono 8-bit')
# Show the live feed (requires visvis package)
cam.preview()