Hi
I have an IMX93 evk card
I tried the following manipulation:
I coded a digital clock with a resolution of 1 millisecond
I filmed this clock with the RPI-CAM-MIPI camera https://www.nxp.com/design/design-center/development-boards-and-designs/RPI-CAM-MIPI
I used gstreamer to display:
gst-launch-1.0 v4l2src device=/dev/video0 ! autovideosink
I took picture of both clock and display (Westland X Windows)
By making the difference between the 2 I have a difference of 100 ms
By measuring the acquisition time with the open CV function
cv::VideoCapture camera(0, cv::CAP_V4L2);
camera >> frame;
I have a time of 23 ms
the difference seems to be due to the display
Greetings
Olivier