can i calculate PSNR of a single image in MATLAB
    7 ビュー (過去 30 日間)
  
       古いコメントを表示
    
PSNR calculation
0 件のコメント
採用された回答
  SRI
      
 2015 年 2 月 28 日
        Hi Tina
PSNR can be calculated for the two image, one is input image and another ones in noisy affected image..
You can try with the example...
A = image1; B = image2;
C = psnr(A,B)
A is input image, B is noisy image, from this we can have a signal to noise ration result
0 件のコメント
その他の回答 (1 件)
  Image Analyst
      
      
 2015 年 2 月 28 日
        I've also attached a file to do psnr for those people with antique versions of MATLAB before the psnr became a built-in function.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!