Open maximecharriere opened 3 years ago
1) Try following code Please refer to following code https://github.com/basler/pypylon/blob/master/samples/grabmultiplecameras.py
2) Some parameter is not available on across the camera models. So you need to check with pylonviewer if the parameter available on your camera.
or via SDK e.g if genicam.IsAvailable(camera.Exposuretime):
See also https://github.com/basler/pypylon-samples for in depth samples and a webinar
1st question In C# there is a CameraFinder to enumarate all connected cameras and emulators. Is there an equivalence in Python ?
2nd question As explained in some places, I can use the C++ doc for the Python wrapper. But I don't understand because many C++ examples don't work.
For example for camera emulation with custom images :
C++ doc
What I coded in Python based on the C++ doc and did not work
What I had to code in Python to make it work
Where can I find what to write to call methods and get/set values ? How do I know what methods and enums are available in python and how to write them ?