I have two images which are quite similar but one of them is a little bit blurred. In image processing, is there any parameter or way to detect the blurred image and separate it from the other one?
Asked
Active
Viewed 431 times
2
-
What type of blur is it? – Javier Lim Feb 25 '18 at 00:46
-
It has lower quality (It is a little bit more blurred). – Mehdi Feb 25 '18 at 00:47
-
Could you put a link to the pictures? – Javier Lim Feb 25 '18 at 00:48
-
5Possible duplicate of [Determine if an image is blurred](https://stackoverflow.com/questions/48864995/determine-if-an-image-is-blurred) – Cris Luengo Feb 25 '18 at 01:36
1 Answers
5
One of the ways to find a blurred image is by using Laplacian operator.
Steps:
1) Read image1 and image2 and convert them to grayscale
2) Use Laplacian operator to get the edge image.
3) Find the variance of the Laplacian image.
4) Compare the variances of image1 and image2.
5) The image which has the least variance is blurred.
Check this link for additional information

janu777
- 1,940
- 11
- 26