After I have built the OpenCV-3.4.0 (have trouble to get OpenCV-4.0 to build) with my Jetson Nano, I try to test the CSI camera but I got following error while no view window shows.
Could somebody give me the suggestions how to solve the problem?
Thanks so much
Jimmy
WARNING: erroneous pipeline: no element “nvcamerasrc”
Rspberry Pi Camera Module V2 - Supported by Jetson Nano
Hi. I could see videos by sdk mvviewer but I couldn’t see any input video using other tools such as cheese, vlc gucviewer ,… also by running your command I got this message:
ERROR: pipeline could not be constructed: no element "nvcamerasrc".
Hi!
I’m working on running yolo on Tx2 Dev kit. I have installed all of requirements for yolo, OpenCV, CUDA, Cudnn.
I’ve tested if the onboard camera’s working via gstreamer : gst-launch-1.0 nvarguscamerasrc ! nvvidconv ! xvimagesink
It works properly.
Then, I tried to run yolo by your code ./darknet detector demo cfg/coco.data cfg/yolo.cfg yolo.weights “nvcamerasrc ! video/x-raw(memory:NVMM), width=(int)1280, height=(int)720,format=(string)I420, framerate=(fraction)30/1 ! nvvidconv flip-method=0 ! video/x-raw, format=(string)BGRx ! videoconvert ! video/x-raw, format=(string)BGR ! appsink”
The result is “Video-stream stopped!”
How could i track the issue?
Thanks
As said above, nvcamerasrc was for old L4T releases (I think up to R28.2.0).
For newer releases, replace with nvarguscamerasrc and use NV12 instead of I420 as received format into NVMM memory.
Also note that tiny-yolo may be faster on Nano.