atomicmac
atomicmac
There does not appear to be any segfault? Here is the output of the gdb session: (gdb) run Starting program: /home/user/.pyenv/versions/3.11.4/envs/cv-3.11.4/bin/python3.11 sample.py [Thread debugging using libthread_db enabled] Using host libthread_db...
Also, here is the output from a gdb session which successfully called the image event callbacks: Starting program: /home/user/.pyenv/versions/3.11.4/envs/cv-3.11.4/bin/python3.11 sample.py [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1"....
I swapped the camera to an acA4024-8gc and it works every time. Any idea what the difference is that would make the acA4024-8gm only get the image callbacks working occasionally...
Interesting, so while the "single shot" GUI button works in pylon viewer, clicking the "Generate Software Trigger" Execute button does not seem to do anything. 
I hit the "Continuous Shot" button in the GUI with the same configuration as above and nothing happens.
Thank you, ok following those above instructions I get a frame when I push the Generate Software Trigger button.
Adding ``` cam.Open() cam.UserSetSelector.Value = "Default" cam.UserSetLoad.Execute() ``` before the `camera.RegisterConfiguration(pylon.SoftwareTriggerConfiguration(), pylon.RegistrationMode_ReplaceAll, pylon.Cleanup_Delete)` command makes the sample code work. I was thinking that registering the SoftwareTriggerConfiguration with RegistrationMode_ReplaceAll would replace...
Thanks for your help Thies! I was looking for what SoftwareTriggerConfiguration does change, but can't find it documented anywhere - could you point me to the proper documentation? Thanks again!