can i calculate PSNR of a single image in MATLAB
조회 수: 4 (최근 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!