How do I compare two images and find the similarity percentage?

223 views (last 30 days)
Hello,
I have two images and I want to find the similarity percentage between the two images. The two images are almost the same, just one is blur than the other. The images are of same size. There can also be a translation or rotation involved between the two images.
Can cross-correlation be used for this?
Thanks in advance.

Accepted Answer

Raunak Gupta
Raunak Gupta on 5 Sep 2020
Hi Parth,
For finding structural similarity index between two images you can use ssim function. If there is translation and rotation, then you may need to use xcorr2 to find where the second image fits in the first image. Although cross correlation may not be able to figure out a similarity index like ssim, you may first align both image using method mentioned here, then can apply ssim on output images.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!