Skip to main content

Cython bindings for Point Gray Fly Capture 2.

Project description

Project that provides python bindings for the FlyCapture2 library by Point Gray.

For more information: http://matham.github.io/pyflycap2/index.html

To install: http://matham.github.io/pyflycap2/installation.html

Appveyor status Supported Python versions Latest Version on PyPI

Examples

Listing GigE cams:

cc = CameraContext()
cc.rescan_bus()
print(cc.get_gige_cams())  # prints list of serial numbers.

Configuring with the GUI:

gui = GUI()
gui.show_selection()

Reading images from a camera:

c = Camera(serial=cam_serial)
c.connect()
c.start_capture()
c.read_next_image()
image = c.get_current_image()  # last image
c.disconnect()

Project details


Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page