Open enp6s0 opened 10 months ago
As a workaround, I patched the parser to disregard extra parameters and trim the size variable... a hacky solution but it does work:
try:
file_name, address, size = others.split(';')
except ValueError:
splitted = others.split(';')
file_name = splitted[0]
address = splitted[1]
size = splitted[2][:4]
Describe the Issue Cannot create acquirer with FLIR GEV cameras, apparently due to an option parsing error
To Reproduce Steps to reproduce the behavior:
Sample Code I can show a piece of code that demonstrates the reported phenomenon:
Traceback
I've tried dumping out
others
, and it seems that the offending input is:Other inputs seems fine:
Expected Behavior Harvesters should be able to connect to the camera and get image frames
Configuration
Reproducibility
This phenomenon can be stably reproduced:
Actions You Have Taken
others
variable (see above) seems to reveal an offending input that contributed to the crash