5

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#?

Daniel Elliott
  • 22,647
  • 10
  • 64
  • 82
pang
  • 3,964
  • 8
  • 36
  • 42

4 Answers4

2

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
  • 24,478
  • 5
  • 49
  • 58
0

Emgu cv is a project that provides all the bindings for OpenCV. I've used it on both Windows and Linux platforms (Mono) with great success.

http://emgu.com/ http://emgu.com/wiki/index.php/Camera_Capture_in_7_lines_of_code

DallinDyer
  • 1,378
  • 13
  • 14
-1

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
  • 1,194
  • 2
  • 10
  • 25
-1

This project supports even high-end PTZ camera. Code Project - Versatile WebCam C# library.

It uses Touchless.Vision and WebCamLib

Pranesh Janarthanan
  • 1,134
  • 17
  • 26