Borrar filtros
Borrar filtros

How to calculate MSE (Mean Squared Error)?

5 visualizaciones (últimos 30 días)
hudof najeeb
hudof najeeb el 20 de En. de 2017
Editada: hudof najeeb el 22 de En. de 2017
What is the instruction to calculate mean squared error of two images?
  1 comentario
hudof najeeb
hudof najeeb el 21 de En. de 2017
Editada: Walter Roberson el 21 de En. de 2017
when I am writing
disp(['MSE ' measerr(CoverImg,stegImg)])
the result is 3. it is error because it must be btw 0 and 1. how to solve it?

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 20 de En. de 2017
Editada: Walter Roberson el 20 de En. de 2017
  2 comentarios
Walter Roberson
Walter Roberson el 21 de En. de 2017
measerr can return mean squared error, but it does so as the second output.
[~, MSE] = measerr(CoverImg,stegImg);
fprintf('MSE: %.5g\n', MSE)
hudof najeeb
hudof najeeb el 22 de En. de 2017
Editada: hudof najeeb el 22 de En. de 2017
Thank you Sir...This is exactly what I wanted

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by