New category – “wiki”

 
Hello together,
I’ll just want to inform you that there’ll be soon a new category. The category will be named “wiki” and gradually filled with articles, which on the contrary to my other articles on this blog, will completely missing my personal touch. The articles should be seen as pure knowledge articles which are totally free from any comments of mine or my personal opinion.
If you now ask yourself, “Why does he do that?” I’ll say, “let me explain it to you.” A couple of times there have been articles where I used techniques and terms whiche are not very common. So as not to bloat these articles with all that nerdy stuff, I will create wiki articles on specific topics, which you can work through, to get the necessary background knowledge for the main articles.
 
 
Greetings,
Raffi

How to easily record from a webcam in C#

What is the easiest way to use a webcam in C# and record from it? If you search for an answer to this question you’ll find a lot of articles in the internet but most of them are many pages long and very confusing. However that isn’t really necessary. With the aid of the AForge.NET library you can do the given task really easy. Just a few lines of C# code are enough to drive your webcam and capture images from it. In the following I’ll show you how to handle the AForge library.
What do you need?

The AForge.Video.dll together with the AForge.Video.DirectShow.dll
Both dlls can be found on the AForge website inside the “(libs only)” zip-archive.
A simple winforms-application, with a picturebox on its gui
A webcam. For example this one:No products found.
Basic C#-knowledge. If not exists, read this: No products found.

At first you have to reference the both dlls and write the using-statements […]