Smileyface
Smileyface

Reputation: 71

displaying gstreamer with opencv

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

Answers (1)

ensonic
ensonic

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

Related Questions