How to compare or find out the P.S.N.R. value of two images?

26 views (last 30 days)
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?

Accepted Answer

Image Analyst
Image Analyst on 26 Apr 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 Comments
Image Analyst
Image Analyst on 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
MD IS on 26 May 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.

Sign in to comment.

More Answers (1)

VISHNU MENON
VISHNU MENON on 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 Comment
Image Analyst
Image Analyst on 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.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!