本文介绍了如何在.NET中连接到USB网络摄像头?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在.NET中连接到USB网络摄像头,特别是使用C#。作为.NET的新手,我不知道在标准库中有什么样的支持。我在网上找到一个例子,通过剪贴板复制位图,但这似乎很黑的(可能很慢)。是否有更好的方法?

I want to connect to a USB Webcam in .NET, specifically using C#. Being new to .NET I don't know what kind of support there is in the standard libraries for doing so. I found one example on the web that copies bitmaps through the clipboard, but that seems very hacky (and probably slow). Is there a better way?

推荐答案

您需要使用将网络摄像头与您的应用程序集成。有很多这样的例子。以下是




    • MSDN Coding4Fun: Look at me! Windows Image Acquisition
    • CodeProject: WIA Scripting and .NET
    • CodeProject: WebCam Fast Image Capture Service using WIA
    • clausn.dk: Webcam control from C# and WIA

    这篇关于如何在.NET中连接到USB网络摄像头?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

    07-04 22:39