Simple .NET webcam library

Posted by Vegard Larsen on Stack Overflow See other posts from Stack Overflow or by Vegard Larsen
Published on 2008-10-25T11:24:09Z Indexed on 2010/03/21 19:41 UTC
Read the original article Hit count: 431

Filed under:
|
|

Is there a simple library for .NET that has a simply API that let's you do something like;

// pseudo-code
List<Webcam> cams = Webcam.GetAll();
Image i = cams[0].GrabImage();

I've looked at DirectShow and WIA, both seem to be much more complicated than this. I've also looked at this CodeProject project, but it really is much more complicated than what I need.

The library should support image grabbing and video grabbing, and preferably live streaming of video.

Edit: It is preferable if it is free (or at least very cheap), as this is a hobby project.

© Stack Overflow or respective owner

Related posts about .NET

Related posts about c#