|
I have always been quite interested in vision algorithms and vision systems.I have put some ideas and suggestions on this website that might help you to get started as well.
A popular source of images for vision algorithms is a webcam. It depends on the programming language and platform how you can access the images from your webcam directly.In C# you can use the WIA (Windows Imaging Architecture)SDK. For actual image manipulation and vision algorithms in C# you could used AForge. It doesn't have all the vision algorithms you can think of, but still quite a lot and it's relatively easy to use. Another framework for vision systems in C# is Emgu. Emgu is actually a .Net wrapper for the world famous OpenCV library. The OpenCV library is written for C++ and contains really many vision algorithms and ways to process and display vision information.
|