i am executing the code given in the matlab documentation and getting the error'Undefined function 'psnr' for input arguments of type 'double'.
17 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
is psnr is not inbuilt in matlab?
ref = imread('lena256.bmp');
ref=double(ref(:,:,1));
A = imnoise(ref,'salt & pepper', 0.02);
%Calculate the PSNR.
[peaksnr, snr] = psnr(A, ref);
fprintf('\n The Peak-SNR value is %0.4f', peaksnr);
fprintf('\n The SNR value is %0.4f \n', snr);
0 Kommentare
Antworten (1)
Meghana Dinesh
am 16 Mär. 2015
Bearbeitet: Meghana Dinesh
am 16 Mär. 2015
As far as I know, only A should be of type double. Also, check if you have the necessary toolbox and the right version of MATLAB where psnr is included.
Regards,
Meghana.
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!