calculation of PSNR cetween two images
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
If I am calculating PSNR of a image then should I use
PSNR=psnrtest(Original_image,reconstructed_image)
OR
Original_doubled_image=double(Original_image);
PSNR=psnrtest(Original_doubled_image,reconstructed_image)
0 Kommentare
Antworten (1)
Guillaume
am 29 Apr. 2015
As far as I know there's no psnrtest function in matlab or its toolboxes. The image processing toolbox has a psnr function however.
For psnr, both images must be of the same type and class. So if the reconstructed_image is double, then the original image should be double as well.Make sure that the intensity range of both images matches as well. double images usually have a range between 0 and 1.
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!