Congratulations, I have two questions about the experimental results and evaluation indicators.
What do the results HQ and LQ generated by the denoising task (dn) represent? Are high-quality images and low-quality images? Does LQ represent the noisy image I input?
Which two images are used to calculate the evaluation indicators PSNR and SSIM? Because I seem to have only inputted noisy images without corresponding reference images. What does the 'y' in 'psnr_y' represent?
Thank you very much for your reply
Thanks a lot for the question! The following are my answers.
HQ: the restored high-quality images. For image denoising, this is the denoised image.
LQ: this is the low-quality image. For image denoising, it is the noisy input.
The ground-truth image and the restored images (HQ) are used to calculate PSNR and SSIM. Actually, for Gaussian image denoising, the input of the dataloader is the ground-truth images and the noisy images are generated on the fly.
Y means the Y channel. So psnr_y is the PSNR calculated on the Y channel. And psnr without y suffix is the PSNR calculated on the RGB channels.
Congratulations, I have two questions about the experimental results and evaluation indicators.