calculating PSNR

13 visualizzazioni (ultimi 30 giorni)
kash
kash il 21 Mar 2012
I have two images original image and compressed image,please tell how to calculate mean square error and psnr

Risposta accettata

Image Analyst
Image Analyst il 21 Mar 2012
Did you see the formula at http://en.wikipedia.org/wiki/PSNR? Of course you can just subtract the images and use the sum() function instead of the loops, which I know you know how to do. Just make sure you use .^2 instead of ^2 because you want an element-by-element squaring. Give it a try - it's just one line of code.
  3 Commenti
Image Analyst
Image Analyst il 21 Mar 2012
Looks like it should be as long as origImg & compImg are floating point images and not uint8 or uint16. I was thinking of something like
MSE = mean2((single(image1) - single(image2)).^2);
kash
kash il 22 Mar 2012
Thanks MR.Analyst

Accedi per commentare.

Più risposte (1)

Wayne King
Wayne King il 21 Mar 2012
The Wavelet Toolbox has a function for this, measerr()
>>doc measerr
  2 Commenti
kash
kash il 21 Mar 2012
Wayne i am getting page not found,am using 2010a
Wayne King
Wayne King il 21 Mar 2012
introduced in R2010b

Accedi per commentare.

Community Treasure Hunt

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

Start Hunting!

Translated by