i am getting the error "Undefined function 'psnr' for input arguments of type 'uint8'" in executing the code below
이전 댓글 표시
ref = imread('pout.tif'); A = imnoise(ref,'salt & pepper', 0.02);
[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);
답변 (1개)
SRI
2015년 2월 28일
0 개 추천
HI Tina There is no inbuilt function for psnr, we want to implement with the eqaution and the datatype of the two image in the psnr should be same as double or uint8..
if one is in uint8 and another is in double means it will not work
카테고리
도움말 센터 및 File Exchange에서 Image Quality에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!