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
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()