Thies Möller

Results 203 comments of Thies Möller

To recap: Configure in pylon viewer: * to be sure the camera is in factory settings: * `UserSetSelector` = "Default" * push `UserSetLoad` button * your trigger config: * `TriggerSelector`...

Great! The Configurations that you can load will just add up upon what is already configured on the camera. Good hint from your issue to better document how prior configuration...

In the companion repository pypylon-samples we have a demo for HW triggering. https://github.com/basler/pypylon-samples/blob/main/notebooks/USB_hardware_trigger_and_chunks.ipynb And you can search under docs.baslerweb.com for triggered acquisition. https://docs.baslerweb.com/triggered-image-acquisition

do you also set the IP address in pylon viewer manually? If not.. [grab.py](https://github.com/basler/pypylon/blob/master/samples/grab.py) should just work

Is the flow control in your switch set to symmetric? ![Screenshot_20231212-225010](https://github.com/basler/pypylon/assets/5516325/60d49460-de53-45b7-83b3-6faec9a03ec9)

Hi @Septembit, the c++ API and the pypylon API are very close to each other. See [pypylon-samples](https://github.com/basler/pypylon-samples) for in depth background and documentation. Typically a search'n'replace is enough ;-) You...

You can look up every camera feature in our products documentation docs.baslerweb.com We have python sample code for every feature online. https://docs.baslerweb.com/balance-white#sample-code

One hint regarding processor load in your setup, would be to configure the PixelFormat of your camera. Per factory default ( in case you have a color camera ) the...

To lower the load on your system you should also follow the overall network setup documentation for your camera https://docs.baslerweb.com/network-configuration-(gige-cameras)#changing-the-network-adapter-properties-linux After increasing the MTU of your network interface, you have...

You are missing the `camera.Open()` before any feature access to the camera. See my example. You can also, instead of setting a direct value of the packet size, let pylon...