Using GPU for GMSL Camera Rendering
An alternative way to for gst-launch
Below is an example script that initializes a 5MP AC-IMX490 camera using the nvv4l2camerasrc element, which offloads rendering to the GPU:
nvv4l2camerasrc element, which offloads rendering to the GPU:gnome-terminal -- bash -c \
"gst-launch-1.0 -v nvv4l2camerasrc device=/dev/video$1 ! \
'video/x-raw(memory:NVMM), width=2944, height=1860, framerate=30/1, format=UYVY, interlace-mode=progressive' ! \
nvvidconv top=0 bottom=1860 left=0 right=2880 ! 'video/x-raw(memory:NVMM), width=2880, height=1860' ! \
fpsdisplaysink text-overlay=false video-sink=nv3dsink sync=false -e"


Last updated