vote up 2 vote down star

Hi

How can we identify that a given image is blur or how much percent is it blur in C#? Is there any API available for that? Or any algorithm that can be helpful in that?

Thanks!

flag

60% accept rate
1  
blurred by what? – Brian Schroth Nov 5 at 14:10
Do you know the original image? – tom10 Nov 6 at 4:44
I don't have original image, if I have, its really easy to check the similarity between both of them. I want to analyze the images taken from the camera and want to separate blur images. – ZHS Nov 9 at 15:08

6 Answers

vote up 0 vote down

Ambigous question.

link|flag
vote up 1 vote down

Given that I'm guessing you don't have the original image, it might be worthing looking at performing some kind of edge detection on the blurred image.

This Paper suggests a method using Harr Wavelet Transform, but as other posters have said, this is a fairly complex subject.

link|flag
vote up 4 vote down

You could perform a 2D-FFT and search the frequency coefficients for a value over a certain threshold (to elimate false-positives from rounding/edge errors). A blurred image will never have high frequency coefficients (large X/Y values in frequency-space).

If you want to compare with a certain blurring algorithm, run a single pixel through a 2D-FFT and check further images to see if they have frequency components outside the range of the reference FFT. This means you can use the same algorithm regardless of what type of blurring algorithm is used (box blur, gaussian, etc)

link|flag
1  
+1 - this is the way to go: of course, finding that threshold is non-trivial. – Jacob Nov 5 at 14:56
1  
+1 this is definitely the way to go. Maybe you want to apply a windowing function to the image first, so you don't have sharp corners at the borders (the FFT "expects" a periodic signal) – nikie Nov 5 at 16:37
1  
+1. One would need to be careful with the edges though as these will add high frequency power. Also, rather than an absolute threshold, one could look at the total power in LF vs power in HF. – tom10 Nov 6 at 4:43
vote up 4 vote down

I don't think that "blurredness" is something you can measure by per cent.

However I do believe you could make an algorithm that gives you some relative indication of how much an image is blurred, even if you don't have an original, sharper version of the image.

Have you noticed that if you have an image that is already blurred, and you apply a small gaussian blur filter to it, there is virtually no difference?

Based on that observation, your algorithm could do the following: Apply a gaussian blur filter of a particular strength to the image, and then determine how much information (detail) was lost. One simple way to do this might be to sum the difference between corresponding pixels in the original image, and the result after the gaussian algorithm.

Intuition suggests that for a blurred image such as an out-of-focus photograph, this sum would be smaller than for one that started out sharp. For an image that has very fine sharp detail, such as an intricate pattern, this sum would be very high because a small gaussian filter would cause much loss of information.

link|flag
I like this trick and I tried doing it. with some images, the similarity after applying Gaussian blur is 100% and sometime it skips the blur images and take away the sharp images. The trick that you told me to compare corresponding pixels, Do I need to sum the differences of two adjacent pixels in original image and then sum the differences of two adjacent pixels after applying Gaussian Blur and then see the difference? What would be the criteria to measure if difference is too big or too small? And should I compare the ARGB int values? Thanks! – ZHS Nov 10 at 9:29
vote up 0 vote down

Err ... do you have the original image? What you ask is not a simple thing to do, though ... if its even possible

This is just a bit of a random though but you might be able to do it by fourier transforming the "blurred" and the original image and seeing if you can get something that has a very similar frequency profiles by progressively low pass filtering the original image in the frequency domain. Testing for "similarity" would be fairly complex in itself though.

link|flag
vote up 1 vote down

Given a blurred bitmap alone, you probably can't.

Given the original bitmap and the blurred bitmap you could compare the two pixel by pixel and use a simple difference to tell you how much it is blurred.

link|flag

Your Answer

Get an OpenID
or

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