如何在 .NET 中连接到 USB 网络摄像头?

How do I connect to a USB webcam in .NET?(如何在 .NET 中连接到 USB 网络摄像头?)
本文介绍了如何在 .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?

推荐答案

您需要使用 Windows 图像采集 (WIA) 将网络摄像头与您的应用程序集成.有很多这样的现成的例子.这是 C# 网络摄像头用户控件 带有来源.

You will need to use Windows Image Acquisition (WIA) to integrate a webcam with your application. There are plenty examples of this readily available. Here is a C# Webcam User Control with source.

这里有更多文章和博客文章来自希望解决与您相同的问题的人们:

Here are some more articles and blog posts from people looking to solve the same problem you are:

  • MSDN Coding4Fun:看看我!Windows 图像采集
  • 代码项目:WIA 脚本和 .NET
  • CodeProject:WebCam 快速图像捕获服务使用 WIA
  • clausn.dk:来自 C# 和 WIA 的网络摄像头控制

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

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How to MOQ an Indexed property(如何最小起订量索引属性)
Mocking generic methods in Moq without specifying T(在 Moq 中模拟泛型方法而不指定 T)
How Moles Isolation framework is implemented?(Moles Isolation 框架是如何实现的?)
Difference between Dependency Injection and Mocking Framework (Ninject vs RhinoMocks or Moq)(依赖注入和模拟框架之间的区别(Ninject vs RhinoMocks 或 Moq))
How to mock Controller.User using moq(如何使用 moq 模拟 Controller.User)
How do I mock a class without an interface?(如何模拟没有接口的类?)