将处理后的视频从 C# 程序发送到 C++程序
我正在从网络摄像头捕获视频,它由 C# 程序处理,然后我想将其流式传输到 C++ 程序。该 C++ 程序可以配置为从网络摄像头获取视频流,因此是否可以将我处理过的视频发送/流式传输到该程序,其中 C++ 程序将该流检测为来自网络摄像头的视频。
谢谢 !
编辑:我的 C# 程序访问网络摄像头并进行一些处理。另一方面,我有 CCV,它接受来自网络摄像头或视频文件的输入。所以我想将我处理过的视频发送(流)到 CCV。
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 the 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您似乎正在寻找如何在 Windows 上进行 进程间通信。
Code Project 还有一篇关于它的很棒的文章。
You seem to be looking for how to do Interprocess Communication on Windows.
Code Project also has a great article about it.
我可以使用SplitCam简单地解决我的问题谢谢大家。
I could simply overcome my problem using SplitCam Thank you everyone.