views:

99

answers:

2
+1  Q: 

Photo application

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

+1  A: 

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.

Enreeco
A: 

Your going to have to do some interesting coding to achieve this. My suggestion is to do some research. Image manipulation, such as converting formats, resizing, cropping, zooming, is simple enough. You could even just write a front-end for an existing image manipulation tool, such as this one: http://kfoo.net/products/imgman/

If your looking to do image "warping" or other advanced manipulation, you are in for some fun.

Jon