vote up 0 vote down star

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

flag

2 Answers

vote up 1 vote down check

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.

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.