-
Notifications
You must be signed in to change notification settings - Fork 297
[BUG] Newly set up Jetson Orin Nano has no nvarguscamerasrc or nvoverlaysink #62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Ah, it seems those are deprecated (according to the Jetson forums). |
Were you able find a way to fix this? |
I had to put the project aside for a while, so I forgot how far I was able to get, but check this answer |
I just started my project and found it runs if you replace nvoverlaysink with nveglglessink. I'm using a csi camera and I needed to reconfigure the csi port for imx219-A this worked: |
If i try gst-launch-1.0 nvarguscamerasrc sensor-id=0 ! nvdrmvideosink) it looks like everything runs find but the camera doesn't actually launch? Below is the result. nano1@nano1-desktop:~$ gst-launch-1.0 nvarguscamerasrc sensor-id=0 ! nvdrmvideosink GST_ARGUS: 3280 x 1848 FR = 28.000001 fps Duration = 35714284 ; Analog Gain range min 1.000000, max 10.625000; Exposure Range min 13000, max 683709000; GST_ARGUS: 1920 x 1080 FR = 29.999999 fps Duration = 33333334 ; Analog Gain range min 1.000000, max 10.625000; Exposure Range min 13000, max 683709000; GST_ARGUS: 1640 x 1232 FR = 29.999999 fps Duration = 33333334 ; Analog Gain range min 1.000000, max 10.625000; Exposure Range min 13000, max 683709000; GST_ARGUS: 1280 x 720 FR = 59.999999 fps Duration = 16666667 ; Analog Gain range min 1.000000, max 10.625000; Exposure Range min 13000, max 683709000; GST_ARGUS: Running with following settings: |
Interesting, are you using a csi camera? Have you tried specifying a specific format? gst-launch-1.0 nvarguscamerasrc sensor-id=0 ! 'video/x-raw(memory:NVMM), width=1920, height=1080, format=NV12, framerate=30/1' ! nvdrmvideosink Try running this using NV12 format and see if that works |
Thanks for the response! Yes I am using a CSI camera. If i use the script you wrote above Terminal still seems as though everything indexes through but then the camera doesn't actually load? Below is the output from terminal if i copy and paste the script you wrote above. I should note that i am able to get the camera to open using some other scripts that use "gst-launch", such as "gst-launch-1.0 nvarguscamerasrc ! 'video/x-raw(memory:NVMM),framerate=30/1,format=NV12' ! nvvidconv ! xvimagesink" but not using the above commands or the one from the tutorial. Setting pipeline to PAUSED ... GST_ARGUS: 3280 x 1848 FR = 28.000001 fps Duration = 35714284 ; Analog Gain range min 1.000000, max 10.625000; Exposure Range min 13000, max 683709000; GST_ARGUS: 1920 x 1080 FR = 29.999999 fps Duration = 33333334 ; Analog Gain range min 1.000000, max 10.625000; Exposure Range min 13000, max 683709000; GST_ARGUS: 1640 x 1232 FR = 29.999999 fps Duration = 33333334 ; Analog Gain range min 1.000000, max 10.625000; Exposure Range min 13000, max 683709000; GST_ARGUS: 1280 x 720 FR = 59.999999 fps Duration = 16666667 ; Analog Gain range min 1.000000, max 10.625000; Exposure Range min 13000, max 683709000; GST_ARGUS: Running with following settings: |
Describe the issue
I was going through the README to get my two RPi cameras up and running. The Python examples work just fine (e.g.
python3 dual_camera.py
displays the output of the two connected cameras). But these commands fail:Clearly something isn't installed, but my googling hasn't turned up an answer.
What version of L4T/JetPack
JetPack 5.1.1/L4T35.3.1
What version of OpenCV
OpenCV version: 4.5.4
Python Version
Python version if applicable: 3.8.10
To Reproduce
See description above
Expected behavior
No errors about missing commands or plug-ins.
The text was updated successfully, but these errors were encountered: