How to compare or find out the P.S.N.R. value of two images?
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am giving two images below can anybody help in finding out the P.S.N.R. value of them? My base picture is "t.png" and the image after processing is "output.png", can anybody help me in finding out their respective P.S.N.R. values?
0 commentaires
Réponse acceptée
Image Analyst
le 26 Avr 2015
Copied from the help:
psnr
Peak Signal-to-Noise Ratio (PSNR) expand all in page
Syntax
peaksnr = psnr(A,ref) example
peaksnr = psnr(A,ref,peakval)
[peaksnr,snr] = psnr(___)
Description
example
peaksnr = psnr(A,ref) calculates the peak signal-to-noise ratio for the image A, with the image ref as the reference. A and ref must be of the same size and class.
peaksnr = psnr(A,ref,peakval) uses peakval as the peak signal value for calculating the peak signal-to-noise ratio for image A.
[peaksnr,snr] = psnr(___) returns the simple signal-to-noise ratio, snr, in addition to the peak signal-to-noise ratio.
9 commentaires
Image Analyst
le 17 Oct 2019
Yes, for am 8 bit image use 255, for a 16 bit image use 65,535, and for a floating point image, use 1.
MD IS
le 26 Mai 2020
@Image Analyst
I appreciated your answer 'The PSNR does not tell you which image is "better". It tells you how close your image is to the reference image'.
Which value (low or high) of PSNR tell me about my image is closer to the reference image. I am a little bit confused about the value of PSNR; hence looking for an anwer from you. Thank you.
Plus de réponses (1)
VISHNU MENON
le 29 Jan 2019
can we have reference image as bmp format whereas other image as jpg format and perform the psnr. should both be of same format?
1 commentaire
Image Analyst
le 29 Jan 2019
Of course. The format on disk doesn't matter. Once they're read into memory in your program, they're all the same, like an RGB image or a gray scale image, and the disk format doesn't matter.
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!