Hi,
I am trying to use an Arduino Nicla Vision for lane detection on a slotcar. At full speed, I want to be able to take a picture and do image processing in a loop at least every 20 ms (50fps).
I have realized, that the snapshot()-method does not allow any other CPU calculations until the picture is taken and it lasts between 2 and 13 ms with my current settings.
It seems like, an Interrupt cannot be triggered, when the snapshot()-method is executed.
Since multithreading is not possible as you have stated here, I wanted to know if it is possible to change the snapshot()-method itself to use the time while taking the picture otherwise. I tried finding it in github but couldn’t find it.
Thanks!