PyPylon
PyPylon copied to clipboard
An experimental python wrapper around the Basler Pylon 5 library
Hello, I very new to Python - sorry if it's a silly question. But, how do you install this package? Using: Ubuntu 14.04 + Python 3.6.5 Trying to run from...
Hi, I've been trying for several hours to make it work but I still face the same problem in the end, when running the `python setup.py develop` command. I still...
Hello I have four Basler ace - acA3800-14uc cameras . can i read RGB image using python from all four camera with pyplon wraper? The example shown on the https://github.com/basler/pypylon...
Hello, I want to receive a color image using pypylon (I have a Basler camera) but I fail, it indicates only mono image allowed at this point, is there any...
Added requirements to setup.py, related to #43
could it be that the cam.properties.keys() differ from camera to camera? ``` python >>> cam.properties['ExposureTime'] Traceback (most recent call last): File "/home/strawlab/image-processing-server/local/lib/python2.7/site-packages/IPython/core/interactiveshell.py", line 3066, in run_code exec(code_obj, self.user_global_ns, self.user_ns) File...
Hallo, I have test this cod with my acA2040-90uc Basler. It works well. what I have done is: 1. set assert image_format.startswith('Mono'), 'Only mono images allowed at this point' in...
``` python >>> import pypylon >>> pypylon.pylon_version.version '5.0.1.build_6388' >>> available_cameras = pypylon.factory.find_devices() GetDeviceDiscoveryInfo: bFunctionClass = 14, bFunctionSubClass = 3, bFunctionProtocol = 0. Device is not an U3V device. >>> available_cameras...
Hi, I tried to build PyPylon by using > python setup.py build on my Kunbunto 16.04 system I just installed Pylon pylon-5.0.11.10914-x86_64.deb the compilation fails, this the output running build...
Hi, i am trying to change some of the camera parameters like the 'DecimationVertical' Here is my code : > cam = pypylon.factory.create_device(device_name) > cam.open() > cam.properties['PixelFormat'] = 'Mono8' >...