Jump to content

GStreamer Based Image Signal Processor - Examples - IMX95 Pipelines

From RidgeRun Developer Wiki


Previous: Examples/9075 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 example

For this pipeline example the ispcldebayer element will transform the buffer from bayer format to RGBA format

WIDTH=1920
HEIGHT=1080

gst-launch-1.0 -e -v \
  videotestsrc pattern=colors is-live=true num-buffers=300 ! \
  "video/x-bayer,format=bggr,width=$WIDTH,height=$HEIGHT,framerate=30/1" ! \
  queue ! \
  ispcldebayer ! \
  videoconvert ! \
  v4l2h264enc ! \
  h264parse ! \
  matroskamux ! \
  filesink location=debayer_output.mkv

Got this result:

default pattern
default pattern
pattern=colors
pattern=colors


Previous: Examples/9075 Pipelines Index Next: Performance



Cookies help us deliver our services. By using our services, you agree to our use of cookies.