HI,
@Andrey1984 @DaneLLL :)
I am using a Logitec Brio camera. I followed the below link to read and access the camera which works fine at 30 fps.
Dear Experts,
When I connected logitech brio on jetson nano, I could stream video only 10 fps @ 4K. Is this limitation of jetsion nano or do I missed something ?
Thanks,
I could run the below only from the terminal.
$ ./camera_v4l2_cuda -d /dev/video0 -s 640x480 -f YUYV -n 30 -c
I want to use this with cv2.videocapture() in Opencv, so that I can integrate with my CNN code.
Kindly help me on how to use ‘camera_v4l2_cuda’ with cv2.
Thanks
DaneLLL
January 28, 2021, 11:47pm
3
Hi,
For hooking with OpenCV, we suggest use gstreamer pipeline. Please take a look at
Hi,
Please check the sample:
and run this pipeline:
v4l2src device=/dev/video0 ! video/x- raw,format=YUY2,width=640,height=480,framerate=30/1 ! videoconvert ! video/x-raw,format=BGR ! appsink
A user has mentioned performance is better with two nvvidconv plugins:
So you may also try
v4l2src device=/dev/video0 ! video/x- raw,format=YUY2,width=640,height=480,framerate=30/1 ! nvvidconv ! video/x-raw(memory:NVMM),format=BGRx ! nvvidconv ! video/x-raw ! videoconvert ! video/x-raw,format=BGR…
1 Like
@DaneLLL : Thanks a lot. The Pipeline you provided works like a charm. Interested to understand the technique /method to construct this pipeline. Any document available to understand the pipeline construction ?