Error mapping between two images

7 visualizaciones (últimos 30 días)
fzhmktr
fzhmktr el 4 de Ag. de 2019
Comentada: KALYAN ACHARJYA el 4 de Ag. de 2019
Hi, I have this task to show the error mapping between reference and distorted image. For example,
ref = imread('pout.tif');
A = imnoise(ref,'salt & pepper', 0.02);
peaksnr = psnr(A,ref);
This code will get me the value of psnr. Is it possible for me to display the error mapping between the two images? So i can see the errors detected by PSNR method.
  1 comentario
KALYAN ACHARJYA
KALYAN ACHARJYA el 4 de Ag. de 2019
error=A-ref;
imshow(error);
Or MSE?
"So i can see the errors detected by PSNR method".
Can you elaborate more?

Iniciar sesión para comentar.

Respuestas (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by