Reputation: 71
I'm wondering if it's possible to capture a frame with gstreamer and display it with opencv, or if there is anyone has a trick to do the equivalent of cvWaitKey in gstreamer (or some other library) Any help would be more than appreciated!
Thanks in advance
Upvotes: 1
Views: 816
Reputation: 3450
You can have an Appsink in your pipeline to get buffers (eventually use tee ! queue ! appsink). Then you could use the image in the buffer with opencv functions if you like.
Upvotes: 2