vote up 0 vote down star

How can I create a function that will replicate the affects of different aperture settings. I want the user to be able to click on different 'focal points' of their picture and see how the aperture/depth of field would change depending on which focal point is in focus.

Also I was curious if anyone knows how to create a slider bar that would create the blurring affect of a low aperture.

flag

0% accept rate
What do you want to blur? Is it data in a 3d program, such as Maya or 3D Studio, or photos from a camera? Is it real time graphics? – Mats Fredriksson Nov 2 at 15:40
with what language? What technology? – Brian Schroth Nov 2 at 15:40
I am trying to build this all using Flash CS4 - I am creating an educational program for the classroom (High School Basic Photography) that my students could use to see what different settings on the camera would do to their pictures. – Scott Bartholomew Nov 2 at 16:41

2 Answers

vote up 0 vote down

That sounds like something you could do with a configurable pixel shader. WPF and Silverlight are capable of that, as well as other open-source image editing libraries.

Read up on High Level Shader Language for more info. There is also a .NET ImageTools library that may help.

link|flag
vote up 0 vote down

You need a convolution filter. To get the coefficients for the filter, you can look at the impulse response. If you take an out-of-focus picture of a bright point of light, you get a nearly perfect circle - if you generate a circle and average every pixel inside of it, you'll get a good approximation to an unfocused image.

link|flag

Your Answer

Get an OpenID
or

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