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!
|
|
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!
|
||||||||
|
|
|
Ambigous question. |
||
|
|
|
|
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. |
||
|
|
|
|
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) |
||||||||||||
|
|
|
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. |
|||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|