Sending a processed video from C# program to C++ program
I am capturing video from my webcam and it is processed by a C# program then i want to stream it to a C++ program. this C++ program can be configured to get a video stream from a webcam so is it possible to send/stream my processed video to this program where the C++ program detect that stream as a video which is coming from the webcam.
Thanks !
EDIT : My C# program access th开发者_如何转开发e webcam and do some processing. on the other side i have CCV which accepts either input from a webcam or a video file. so i want to send(stream) my processed video to CCV.
You seem to be looking for how to do Interprocess Communication on Windows.
Code Project also has a great article about it.
I could simply overcome my problem using SplitCam Thank you everyone.
精彩评论