views:

465

answers:

3

I am now facing one problem which to get the live image from Camera (eg. Sony, Canon) into winform and also control the camera capture button from a button in the form.

have Anyone build something like this, or are there any similar project like this which is done in C#?

A: 

Take a look at http://www.codeproject.com/KB/audio-video/cameraviewer.aspx

adatapost
this is for IP-Cams...
Frank Bollack
+2  A: 

This hardly depends on the capabilities of the camera and its driver. Your biggest chance might be the Windows Image Acquisition (WIA) framework.

Take a look at this article or the MSDN reference.

Frank Bollack
A: 

You can also take a look on Intel OpenCV. It's C++, but you can use use PInvoke to use it from c#

Bolek Tekielski