How to calculate MSE (Mean Squared Error)?

1 Ansicht (letzte 30 Tage)
hudof najeeb
hudof najeeb am 20 Jan. 2017
Bearbeitet: hudof najeeb am 22 Jan. 2017
What is the instruction to calculate mean squared error of two images?
  1 Kommentar
hudof najeeb
hudof najeeb am 21 Jan. 2017
Bearbeitet: Walter Roberson am 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?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Walter Roberson
Walter Roberson am 20 Jan. 2017
Bearbeitet: Walter Roberson am 20 Jan. 2017
  2 Kommentare
Walter Roberson
Walter Roberson am 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 am 22 Jan. 2017
Bearbeitet: hudof najeeb am 22 Jan. 2017
Thank you Sir...This is exactly what I wanted

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Encryption / Cryptography finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by