Jetson Nano/Gstreamer/Example Pipelines/Capture Display: Difference between revisions

From RidgeRun Developer Wiki
mNo edit summary
 
mNo edit summary
 
Line 1: Line 1:
<noinclude>
<noinclude>
{{JetsonNano/Head|previous=GStreamer/Example_Pipelines|next=Gstreamer/Example_Pipelines/Encoding|metakeywords=camera capture, camera display, imx219, sony imx219, camera capture pipeline, camera display pipeline, capture pipelines|title=Jetson Nano GStreamer example pipelines for video capture and display|metadescription=This page contains the GStreamer pipelines for camera capture and display using sony IMX219 camera sensor.}}
{{JetsonNano/Head|previous=GStreamer/Example_Pipelines|next=Gstreamer/Example_Pipelines/Encoding|title=Jetson Nano GStreamer example pipelines for video capture and display|description=This page contains the GStreamer pipelines for camera capture and display using sony IMX219 camera sensor.}}
</noinclude>
</noinclude>



Latest revision as of 07:45, 7 November 2024


Previous: GStreamer/Example_Pipelines Index Next: Gstreamer/Example_Pipelines/Encoding







Problems running the pipelines shown on this page? Please see our GStreamer Debugging guide for help.


Camera Capture

Camera capture pipelines were tested with a Sony IMX219 CMOS image sensor.

Max Resolution

gst-launch-1.0 nvarguscamerasrc ! 'video/x-raw(memory:NVMM), width=3280, height=2464, format=NV12, framerate=30/1' ! fakesink


1080p

gst-launch-1.0 nvarguscamerasrc ! 'video/x-raw(memory:NVMM), width=1920, height=1080, format=NV12, framerate=30/1' ! fakesink
Table 1. Performance results
Resolution CPU% FPS
3280x2464 6.45% 21
3280x1884 7.775% 28
1080p 6.625% 30
720p 12.475% 60
720p 23.75% 120

Videotestsrc display

gst-launch-1.0 videotestsrc is-live=true ! video/x-raw, width=1920, height=1080  ! nvoverlaysink

Camera capture display

3280x2464

gst-launch-1.0 nvarguscamerasrc ! 'video/x-raw(memory:NVMM), width=3280, height=2464, format=NV12, framerate=30/1' ! nvoverlaysink


1080p

gst-launch-1.0 nvarguscamerasrc ! 'video/x-raw(memory:NVMM), width=1920, height=1080, format=NV12, framerate=30/1' ! nvoverlaysink
Table 1. Performance results
Resolution CPU% FPS Glass to Glass Latency (ms)
3280x2464 10.2% 21 128
3280x1884 10.425% 28 122
1080p 8.3% 30 102
720p 14.2% 60 77
720p 23.825% 120 190


Previous: GStreamer/Example_Pipelines Index Next: Gstreamer/Example_Pipelines/Encoding