Nvarguscamerasrc does not apply img width height of settings

I have an Orin connected to an usb camera.
The img can be opened successfully with the following command:

gst-launch-1.0 nvarguscamerasrc sensor_id=0 ! ‘video/x-raw(memory:NVMM), width=(int)3280, height=(int)2464, format=(string)NV12, framerate=(fraction)21/1’ ! nvvidconv ! video/x-raw, format=BGRx ! videoconvert ! appsink drop=1 max-buffers=2
Setting pipeline to PAUSED …
Pipeline is live and does not need PREROLL …
Setting pipeline to PLAYING …
New clock: GstSystemClock
GST_ARGUS: Creating output stream
CONSUMER: Waiting until producer is connected…
GST_ARGUS: Available Sensor modes :
GST_ARGUS: 3280 x 2464 FR = 21,000000 fps Duration = 47619048 ; Analog Gain range min 1,000000, max 10,625000; Exposure Range min 13000, max 683709000;

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:
Camera index = 0
Camera mode = 0
Output Stream W = 3280 H = 2464
seconds to Run = 0
Frame Rate = 21,000000
GST_ARGUS: Setup Complete, Starting captures for 0 seconds
GST_ARGUS: Starting repeat capture requests.
CONSUMER: Producer has connected; continuing.

##################################################
If I try the same command in python with opencv, I get only 1920x1080 resolution, but I set a higher resolution. Any thoughts/ideas ?

import cv2
video_string = “nvarguscamerasrc sensor-id=0 ! video/x-raw(memory:NVMM), width=(int)3280, height=(int)2464, format=(string)NV12 framerate=21/1 ! nvvidconv flip-method=0 ! video/x-raw ! videoconvert ! appsink max-buffers=1 drop=1”
print(str(video_string))
cap = cv2.VideoCapture(video_string, cv2.CAP_GSTREAMER)
assert cap.isOpened(), f’Failed to open cam’

nvarguscamerasrc sensor-id=0 ! video/x-raw(memory:NVMM), width=(int)3280, height=(int)2464, format=(string)NV12 framerate=21/1 ! nvvidconv flip-method=0 ! video/x-raw ! videoconvert ! appsink max-buffers=1 drop=1
GST_ARGUS: Creating output stream
CONSUMER: Waiting until producer is connected…
GST_ARGUS: Available Sensor modes :
GST_ARGUS: 3280 x 2464 FR = 21.000000 fps Duration = 47619048 ; Analog Gain range min 1.000000, max 10.625000; Exposure Range min 13000, max 683709000;

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:
Camera index = 0
Camera mode = 2
Output Stream W = 1920 H = 1080
seconds to Run = 0
Frame Rate = 29.999999
GST_ARGUS: Setup Complete, Starting captures for 0 seconds

You posted in the wrong place, this topic may be moved to Jetson Orin.

Your issue is caused by a missing comma before framerate in opencv case. As no correct mode has been found, nvarguscamerasrc falls back to default 1080p mode.

Also note that the optimal path from nvarguscamerasrc to BGR processing in opencv would be something like:

video_string = "nvarguscamerasrc sensor-id=0 ! video/x-raw(memory:NVMM), width=(int)3280, height=(int)2464, format=(string)NV12, framerate=21/1 ! nvvidconv flip-method=0 ! video/x-raw,format=BGRx ! videoconvert ! video/x-raw,format=BGR ! appsink max-buffers=1 drop=1"
1 Like

Hello,

I will move this topic over to the Jetson category for you.

1 Like

Many thanks, did not see the missing Komma……

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.