0 purchases
pyflycap2 0.3.1
Project that provides python bindings for the FlyCapture2 library
by Point Gray.
For more information: https://matham.github.io/pyflycap2/index.html
To install: https://matham.github.io/pyflycap2/installation.html
Warning
Due to the licensing restrictions, Fly Capture dlls cannot be redistributed,
therefore the wheels only include the compiled bindings. To use, the Fly Capture
dlls must be provided independently, e.g. by placing them on the system PATH.
Examples
Listing GigE cams:
from pyflycap2.interface import CameraContext
cc = CameraContext()
cc.rescan_bus()
print(cc.get_gige_cams()) # prints list of serial numbers.
Configuring with the GUI:
from pyflycap2.interface import GUI
gui = GUI()
gui.show_selection()
Reading images from a camera:
from pyflycap2.interface import Camera
c = Camera(serial=cam_serial)
c.connect()
c.start_capture()
c.read_next_image()
image = c.get_current_image() # last image
c.disconnect()
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.