SSIM function is not consistent.

Original Implementation of SSIM by authors is available here which i can only run gray images but built-in SSIM function can be used on color images as well. but the answer of both gray and colored is not same. can someone explain me the difference, please.
% LR image available here 'https://raw.githubusercontent.com/mugheesahmad/Fun_testing/master/LR0000001.jpg'
% HR image available here 'https://raw.githubusercontent.com/mugheesahmad/Fun_testing/master/HR0000001.jpg'
lr = imread('LR0000001.jpg');
hr = imread('HR0000001.jpg');
ssim(hr, lr) %colored image
% ans = 0.8433
ssim(rgb2gray(hr), rgb2gray(lr)) %builtin function
% ans = 0.7570
original_ssim(rgb2gray(hr), rgb2gray(lr)) %author implementation
% ans = 0.7574

1 comentario

Hafiz Mughees Ahmad
Hafiz Mughees Ahmad el 24 de Sept. de 2020
I raised an error at Scikit library for non consistency and they have given some direction too which can be read here. Thanks.

Iniciar sesión para comentar.

Respuestas (0)

Etiquetas

Preguntada:

el 24 de Sept. de 2020

Comentada:

el 24 de Sept. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by