Hey,
is there a way to force open a camera ( i.e. close all other connections).
I am working on a program, and it crashes a lot.
It leaves the vimba object and the camera in the open state which causes issues when I try to start my program again.
I tried self.cam.run_feature_command('DeviceReset') but this requires an open connection.
The crashes themselves seem to be caused by self.cam.disarm() during a continous acquisition.
My callback looks like this:
Hey, is there a way to force open a camera ( i.e. close all other connections). I am working on a program, and it crashes a lot. It leaves the vimba object and the camera in the open state which causes issues when I try to start my program again.
I tried
self.cam.run_feature_command('DeviceReset')
but this requires an open connection.The crashes themselves seem to be caused by
self.cam.disarm()
during a continous acquisition. My callback looks like this:If I omit the last line, my program doesn't crash anymore. So if someone has an idea about that, please let me know.