Hello, I have a use case that I would like to verify should be possible before purchasing hardware.
I have a system with 4 CSI cameras. A separate device (PLC) will output a GPIO signal when a frame should be taken from the cameras. This signal will be wired to the trigger pin of all the cameras, so that they are synchronized at the hardware level.
There will be long periods of time (minutes) without taking any images, and once images start, they will be taken at ~ 30 FPS for 5-10 seconds. I have read about some timeout issues with the camera connection, but I am not sure if this will pose an issue.
Will I be able to continuously listen for these image frames on the Jetson using the OpenCV image capture? Or will I need to read the GPIO signal to trigger the start of receiving frames?
this will be an issue, capture engine will report timeout failure as it cannot receive frames.
FYI,
the default timeout settings is configured to 2500ms.
you may enabled the enableCamInfiniteTimeout=1 to have application keep waiting for frames, however, application might crash if there has no frames after sometime.