Why ssim and corr2 give totally different results
7 ビュー (過去 30 日間)
古いコメントを表示
Hi, new to matlab and although I have read the definition of both functions. I still can't really understand why ssim always gives values close to 1, like all images are super similar. While it's clearly that the images are changing a little. corr2 seems to be more reliable, but need to explain the 'why'. Does somebody have an Idea?
Thank ypu very much in davance
1 件のコメント
Mathieu NOE
2020 年 10 月 26 日
hello
maybe it would be helpful to share your code and explain what you are looking for
all the best
回答 (1 件)
Raunak Gupta
2020 年 12 月 3 日
Hi,
The corr2 gives a simple correlation between two matrices which is highly dependent on the values present in both the matrices, even a slight noise can suggest that both the images are very different (and there will be a drop in peak value of correlation matrix).
Whereas ssim is much more extensive and robust due to different properties modeled for finding similarity between two images. You will see cross-correlation is one of them, but certainly other terms are also there in the formula mentioned here. That is why if there is a lot of change in the structure and luminance of the image then only the ssim score will be low. You may have a look at the reference mentioned here.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!