Currently I'm working on a project where I need to modify a webcam stream that is streaming to skype. Essentially I want to do things like blur the face and do other anonymizing techniques.
While doing this project however I've been having several issues. Firstly I was using opencv to do the modifications, which was starting to work out well until i tried to interface this with skype (which it wouldnt since opencv takes over the webcam and then skype cannot use it). I then was directed to the GStreamer libraries by a friend which seems like they could work, but I kept getting errors which no one else seemed to be receiving. At the moment I am looking into DirectShow. I have been able to make a virtual webcam for skype to see, but the virtual webcam only takes input from a file. Im working in Windows and/or Linux, depending on which i make more progress in.
So i essentially have 2 questions
If you have done a project or something similar to what I am doing, could you tell me how you went about doing it
Since I'm still working with Gstreamer+Opencv and Directshow methods, does anyone know how to give input from opencv or other webcam into the virtual webcam (I have looked at input pins for the virtual webcam but do not understand how to use them)
Also, yes I have searched for an answer, but as these were a steep learning curve for me, and most answers being non code, I was getting quite confused with some of the answers.