Hello,
I am currently working with an IMX8MPlus board and trying to stream video from a monochrome camera. However, I am experiencing a limitation in the frame rate—I'm only able to achieve 10 FPS. Interestingly, when using the same camera sensor with a Raspberry PI board, I can achieve a higher frame rate.
To troubleshoot and understand the issue better, I want to monitor the frame rate (FPS) directly from the kernel side. Is there any function or file in the kernel that I can access to read the actual FPS being processed or dropped during the stream?
Additionally, any insights into potential reasons for the lower FPS on the IMX8MPlus would be helpful. I've checked the usual suspects like sensor settings and stream configuration, but I’m still not able to achieve the same frame rate as on the other board.
I would appreciate any guidance on:
Kernel functions or files to check FPS
Performance tuning or configuration tips for video streaming on the IMX8MPlus
Known issues or limitations related to this board and camera streaming
Thank you in advance for your help!
Hello,
gst-launch-1.0 v4l2src device=/dev/video0 ! videoconvert ! fpsdisplaysink video-sink=xvimagesink text-overlay=false sync=false -v 2>&1
-v 2>&1
- redirects output to stdouttext-overlay=true
- renders the FPS information into the video stream.Regards