-
Notifications
You must be signed in to change notification settings - Fork 187
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The difference of SSIM between pyiqa and skimage! #236
Comments
It is expected that results might differ slightly due to variations in implementation details (such as padding, filtering, color transformation). We strive to align closely with MATLAB's implementation of this function, as it is the most widely used reference version. The main difference is that we do not downsample the image before calculating the score, whereas MATLAB does. This choice avoids the potential influence of image quality caused by resizing. To obtain results consistent with MATLAB, you can use |
Thank you for maintaining this great repository! However, I’ve noticed some discrepancies in SSIM values when comparing results from MATLAB R2024b, IQA-Pytorch 0.1.13, and Skimage 0.24.0, using the same input data (denoised and ground truth images). Could you please guide me on how to adjust IQA-Pytorch to get results more consistent with MATLAB's SSIM values? Perhaps there are specific parameters or normalization methods I should be using to align these results. Environment:
MATHLAB R2024b
Average SSIM: 0.959785 IQA-Pytorch 0.1.13
Average SSIM: 0.9467163060615112 Skimage 0.24.0**squeezed batch
Average SSIM: 0.9150699 |
Thank you for sharing this information. I will review the code and make the necessary updates to ensure the results align more closely with MATLAB. This process might take some time. |
Thank you for your feedback. We understand the concern regarding the differences between our implementation and MATLAB's built-in
We appreciate your understanding and welcome further discussion or suggestions on how we can improve this implementation. Thank you for your contribution! |
I use the different implementation of SSIM to evaluate the same image pair, but the score is not the same.
So I want to know is this problem matters?
thanks for ur brilliant work, BTW.
The text was updated successfully, but these errors were encountered: