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.

Anyone know of an algorithm that can return fuzzy true/false to if a image has motion blur / camera shake in a image?

Ideally it would be particular to motion blur, as lots of the images in the set might have blurred (Bokeh) backgrounds.

A language preference would be C, Perl, Shell Utility, or Python, but I'm open to anything really.

With my current knowledge of Math / Programming, I don't think I really have a hope of writing such an algorithm, only using one that takes some parameters...

share|improve this question

2 Answers

There are multiple ways to do this, maybe one of the imaging gurus here has a much better answer. Anyways...

My first shot would be to have a frequency analysis of the image (read: 2d fourier transform). Then define a threshold for the high frequencies (i.e. fast changes from one pixel to the next) for true/false. Motion blur filters the high frequencies out. Your mileage may vary, e.g. a completely black picture will have no high frequencies although it is not blurred. Depending on the lens and aperture used, parts of the image may be blurry because they are in the background. I don't think there's a one-size-fits-all solution here.

share|improve this answer
How would this distinguish between Bokeh blur and motion blur? – Josh Bleecher Snyder Apr 19 '12 at 16:53

The Discrete wavelet transform is a useful tool in such detection. Here is a paper from Carnegie Mellon School of Computer Science on detecting and quantifying blur in images by using the DWT. For a binary decision, you threshold the amount to a desired level and everything above that has blur.

share|improve this answer
This is handy, but the paper explicitly says "It is effective for both Out-of-focus blur and Linear-motion blur", which means it's not much use for detecting motion blur in particular... – Josh Bleecher Snyder Apr 19 '12 at 16:55
@JoshBleecherSnyder Out-of-focus blur is not directional, whereas linear-motion blur is. You can run a Principal Component Analysis to obtain the eigenvalues of the blur's characteristic edge points' direction vectors and assess the strength of the predominant one. If it's beyond a certain threshold, you can conclude that the blur is directional, thus linear motion blur. – luvieere Apr 20 '12 at 5:38
thanks, that helps. – Josh Bleecher Snyder Apr 20 '12 at 18:58

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.