GStreamer Based Image Signal Processor - Examples - IMX95 Pipelines
| GStreamer Image Signal Processor |
|---|
| Image Signal Processor Basics |
| Docs |
| Getting Started |
| Examples |
| Performance |
| Troubleshoot |
| Contact Us |
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:

