can i calculate PSNR of a single image in MATLAB
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
tina jain
el 28 de Feb. de 2015
Respondida: Image Analyst
el 28 de Feb. de 2015
PSNR calculation
0 comentarios
Respuesta aceptada
SRI
el 28 de Feb. de 2015
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 comentarios
Más respuestas (1)
Image Analyst
el 28 de Feb. de 2015
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 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!