gstreamer for video processing

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

gstreamer for video processing

trkel
I would like to grab subsequent frames out of the gstreamer pipeline to so I can apply image processing algorithms on them. I have not yet found any direct method to do this.

I have attempted using a fakesink, appsink, and modify the snapshot example program, all to no avail. Due to my limited experience with gstreamer I am not entirely sure which method I should take.

Everything needs to be done in C, and I do not have access to OpenCV (so I do not think gst-opencv would be all that helpful).

If one of you guys could give me a kick-start in the right direction I would be uber appreciative. Thanks.

Tim
Reply | Threaded
Open this post in threaded view
|

Re: gstreamer for video processing

leelakrishna
hi,
  we can take buffer from a pipeline into gstbuffer ....from appsink and we can process it....after that we can display the buffer by sending it to appsrc ...
             
                     sorry if am wrong...