Effacer les filtres
Effacer les filtres

How to calculate MSE (Mean Squared Error)?

5 vues (au cours des 30 derniers jours)
hudof najeeb
hudof najeeb le 20 Jan 2017
Modifié(e) : hudof najeeb le 22 Jan 2017
What is the instruction to calculate mean squared error of two images?
  1 commentaire
hudof najeeb
hudof najeeb le 21 Jan 2017
Modifié(e) : Walter Roberson le 21 Jan 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?

Connectez-vous pour commenter.

Réponses (1)

Walter Roberson
Walter Roberson le 20 Jan 2017
Modifié(e) : Walter Roberson le 20 Jan 2017
  2 commentaires
Walter Roberson
Walter Roberson le 21 Jan 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 le 22 Jan 2017
Modifié(e) : hudof najeeb le 22 Jan 2017
Thank you Sir...This is exactly what I wanted

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by