如何使用 C# 从笔记本电脑的摄像头捕获视频
我是 C# 新手,我正在尝试使用 C# 从笔记本电脑的摄像头捕获视频。我在 MSDN VideoCaptureDevices 和 CaptureSource 上找到了一些信息。我还将 windowsbase.dll 添加到我的引用中。上面的类和方法我无法使用。
如果不使用 Silverlight 概念,如何使用上述类?
I'm new to C# and I'm trying to capture video from my laptop's camera using C#. I found some info at MSDN VideoCaptureDevices and CaptureSource. Also I added windowsbase.dll into my references. The above class and methods I'm not able to use.
How can the above classes be used without using Silverlight concepts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
windowsbase.dll
是 Windows Presentation Foundation 的一部分(与 Silverlight 有很多重叠)。要使用windowsbase.dll
中的类型,您需要一个 WPF 应用程序(如果您不了解任何 WPF,则需要了解所有学习曲线)。如果您想要 GUI 应用程序,那么 WPF 是一个不错的方法。
(否则:请用更多上下文更新问题。)
windowsbase.dll
is part of Windows Presentation Foundation (which has a lot of overlap with Silverlight). To use types fromwindowsbase.dll
you'll need a WPF application (with all the learning curve if you don't know any WPF).If you want a GUI application then WPF is a good approach.
(Otherwise: please update the question with more context.)
在 Silverlight 之外,Microsoft Expression Encoder SDK 也可以完成这项工作。
事实上,它还有另一个 API 可以与设备进行通信。
Outside of Silverlight, the Microsoft Expression Encoder SDK might do the job.
In fact it has another API to communicate to devices.