how to calculate PSNR value ?
Afficher commentaires plus anciens
hi
i need help for calculating PSNR value for two different size images
original image = 256 * 256
output image = 511 * 511
can anyone suggest how to calculate PSNR value for above images
2 commentaires
Wayne King
le 23 Sep 2012
Can you say if you're using a lifting transform, why the reconstructed image approximation is not 512x512?
Sivakrishna
le 23 Sep 2012
Réponses (2)
Image Analyst
le 23 Sep 2012
0 votes
What if you just used imresize() on one of them? And then did the usual PSRN formula. Would that work for your purposes?
2 commentaires
Sivakrishna
le 23 Sep 2012
Modifié(e) : Sivakrishna
le 23 Sep 2012
Image Analyst
le 23 Sep 2012
Make your reference image bigger to match the size of your super resolution image.
sandra viaña borja
le 8 Juil 2018
Modifié(e) : Image Analyst
le 9 Juil 2018
0 votes
Sivakrishna Did you find how to calculate PSNR between an original image and the super resolution constructed one?
4 commentaires
Image Analyst
le 9 Juil 2018
After 6 years, I imagine so. But since then, lucky for you, they've introduced the psnr() function into the Image Processing Toolbox so you can just simply use that, after using imresize() of course to make the image sizes match.
Anu Sri
le 27 Sep 2018
hey can anyone suggest me how to find the psnr value for RGB image?
Image Analyst
le 28 Sep 2018
Try this:
p = psnr(rgbImage, refImage);
Anu Sri
le 28 Sep 2018
it worked,thankyou!!
Catégories
En savoir plus sur Image Quality dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!