Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# .net - Web Camera Image Capture [closed]

Tags:

c#

camera

I was wondering whether anyone knew of a good tutorial for Capturing an Image/Video stream from a web camera using C#?

Any suggestion would be a appreciated.

Thanks.

like image 907
Ash Burlaczenko Avatar asked Feb 24 '11 17:02

Ash Burlaczenko


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

Is C or C++ same?

While C and C++ may sound similar, their features and usage differ. C is a procedural programming language that support objects and classes. On the other hand C++ is an enhanced version of C programming with object-oriented programming support.

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr. Stroustroupe.


2 Answers

Here's a tutorial for EMGU Camera capture in 7 lines of code.

Setup of the EMGU library is fairly easy to do, and the capturing of the camera is truly that easy.

like image 188
DanTheMan Avatar answered Sep 30 '22 19:09

DanTheMan


EmguCV is a good wrapper around the OpenCV API. There's a number of tutorials in the link.

like image 27
Mark H Avatar answered Sep 30 '22 20:09

Mark H