GStreamer Based Image Signal Processor/Examples/IMX8 Pipelines: Difference between revisions

From RidgeRun Developer Wiki
mNo edit summary
No edit summary
Line 5: Line 5:
The GStreamer Based Image Signal Processor element can be easily incorporated into any pipeline. Here we present some sample pipelines for different use cases.
The GStreamer Based Image Signal Processor element can be easily incorporated into any pipeline. Here we present some sample pipelines for different use cases.
__TOC__
__TOC__
=Debayer plugin pipelines examples=
<syntaxhighlight lang=bash style="background-color: #f0fff0">
WIDTH=1920
HEIGHT=1080


gst-launch-1.0 videotestsrc is-live=true ! "video/x-bayer, format=(string)bggr, width=$WIDTH, height=$HEIGHT,framerate=(fraction)30/1" ! queue ! ispcldebayer ! fakesink -v
</syntaxhighlight>
=Color space conversion plugin pipelines examples=
<syntaxhighlight lang=bash style="background-color: #f0fff0">
WIDTH=1920
HEIGHT=1080
gst-launch-1.0 videotestsrc is-live=true ! "video/x-raw,format=(string)RGBA,width=$WIDTH,height=$HEIGHT,framerate=(fraction)30/1" ! queue ! ispclcsc ! fakesink -v
</syntaxhighlight>


<noinclude>
<noinclude>
{{GStreamer Based Image Signal Processor/Foot|Examples/IMX6 Pipelines|Performance}}
{{GStreamer Based Image Signal Processor/Foot|Examples/IMX6 Pipelines|Performance}}
</noinclude>
</noinclude>

Revision as of 20:39, 4 July 2019



Previous: Examples/IMX6 Pipelines Index Next: Performance





The GStreamer Based Image Signal Processor element can be easily incorporated into any pipeline. Here we present some sample pipelines for different use cases.

Debayer plugin pipelines examples

WIDTH=1920
HEIGHT=1080

gst-launch-1.0 videotestsrc is-live=true ! "video/x-bayer, format=(string)bggr, width=$WIDTH, height=$HEIGHT,framerate=(fraction)30/1" ! queue ! ispcldebayer ! fakesink -v

Color space conversion plugin pipelines examples

WIDTH=1920
HEIGHT=1080

gst-launch-1.0 videotestsrc is-live=true ! "video/x-raw,format=(string)RGBA,width=$WIDTH,height=$HEIGHT,framerate=(fraction)30/1" ! queue ! ispclcsc ! fakesink -v


Previous: Examples/IMX6 Pipelines Index Next: Performance