Hi @MartnTous
Yes, the isp is not the issue here. It's other hardware. Trace mode should show how long each operation takes.
Thanks,
Jaka
Hi @MartnTous
Yes, the isp is not the issue here. It's other hardware. Trace mode should show how long each operation takes.
Thanks,
Jaka
Hi @MartnTous
There is a buildup of frames on the device side when host is blocking.
If you set the xlink inputs to non blocking and queue to 1, the frames should go through directly.
outcam1a.input.setBlocking(False)
outcam1b.input.setBlocking(False)
outcam1a.input.setQueueSize(1)
outcam1b.input.setQueueSize(1)
Thanks,
Jaka