I’m developing an application just for fun that consists of capturing images from a webcam.
What I would like to know is how can I apply some filters to the image that I capture? Ideally I would like to develop something like Apple iPhoto; something that defaces the image.
The programming language I am using is C#.
if you wnat to implement the filter algorithms, first of all you have to find all operations involved in the algorithm (also a simple low-pass can involve a bit of work) and then you need to access every single pixels of the image (you can do this using Image or Bitmap classes, using the Set/GetPixel method.