I am getting video feed using DirectShow in my C# Web Form. Now i want to process the frames using OpenCV. (EmguCV Wrapper)
1) How would i collect frames from DirectShow feed.
2) Is there a Way to combine DS & OpenCV.
Thanks.
I am getting video feed using DirectShow in my C# Web Form. Now i want to process the frames using OpenCV. (EmguCV Wrapper)
1) How would i collect frames from DirectShow feed.
2) Is there a Way to combine DS & OpenCV.
Thanks.
From your description, using a SampleGrabber
filter should suffice. The SampleGrabber will allow you to grab the individual frames, after which you can store and process it as you need.
Example usage can be found on MSDN