Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking at an interesting problem of deblurring motion blurred images. Rather than going for guesses of psf, I'm interested in finding out the actual blur parameters (angle and length). I was successful in finding angle of blur to a certain extent, and need a good technique for finding blur length. If any one has a good idea or code or reference to suggest, it will be helpful. I'm working with MATLAB.

share|improve this question

3 Answers

This document covers MATLAB motion blur in images, and could be extended to video:

http://www.btopper.com/optics.pdf

share|improve this answer
hey thanks.. this i have already got.. this techniques uses psf approximation techniques.. I was actually looking for exact estimation of psf parameters like angle and length of blur. – user451897 Sep 27 '10 at 6:13
hmmm... You may be better off trying on an image/video processing forum rather than a programming one for this advice, as it seems quite advanced and specific to the subject. – Bill Cheatham Sep 27 '10 at 12:48

The "actual blur parameters" are just a much higher order approximation to the point spread function than the angle/length, which would just be a simple 2d model of said function. If you are interested in angle/length, you could estimate the PSF with blind deconvolution and try to recover angle/length by modeling the PSF as a 2d Multivariate Gaussian.

share|improve this answer

Look for this article: "Robust Identification Of Motion And Out Of Focus Blur Parameters From Blurred And Noisy Images".

It's a Naive Method but might work for you.

share|improve this answer
thanks i already had it – user451897 Oct 2 '10 at 5:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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