vote up 11 vote down star
7

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?

flag

5 Answers

vote up 10 vote down

You will need to use Windows Image Acquition (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:

A screen shot from the Coding4Fun article.

A screen shot from the Coding4Fun article.

link|flag
vote up 1 vote down

Here is nice example of doing this. It's using DirectShow.Net (http://directshownet.sourceforge.net/), which is propably better than using "clipboard" :D.

http://www.codeproject.com/KB/audio-video/WebcamUsingDirectShowNET.aspx

link|flag
vote up 0 vote down

On my computer, WIA was painstakingly sloooow... so i decided to give the Windows Multimedia Video Capture a try.

You can find a demo here.

link|flag
vote up 0 vote down

It really depends on what you want to do. WIA is primarily for capturing stills from imaging devices, and DirectShow (used either through directshow.net or managed DirectX) is for access to fuller video features.

The other option is to create a WPF application. It has a huge amount of built in support for video (to the extent that having a looping video clip as a button is pretty trivial), and should be quick and easy to develop.

link|flag
vote up 2 vote down

Interesting side note, WIA isn't supported by Vista for doing Captures from Webcams anymore. They mainly targeted it towards Scanners and pulling stills from cameras.

Also, larger manufacturers like logitech have abandoned WIA is favor of DirectShow.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.