フィルターのクリア

How to calculate MSE (Mean Squared Error)?

5 ビュー (過去 30 日間)
hudof najeeb
hudof najeeb 2017 年 1 月 20 日
編集済み: hudof najeeb 2017 年 1 月 22 日
What is the instruction to calculate mean squared error of two images?
  1 件のコメント
hudof najeeb
hudof najeeb 2017 年 1 月 21 日
編集済み: Walter Roberson 2017 年 1 月 21 日
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?

サインインしてコメントする。

回答 (1 件)

Walter Roberson
Walter Roberson 2017 年 1 月 20 日
編集済み: Walter Roberson 2017 年 1 月 20 日
  2 件のコメント
Walter Roberson
Walter Roberson 2017 年 1 月 21 日
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 2017 年 1 月 22 日
編集済み: hudof najeeb 2017 年 1 月 22 日
Thank you Sir...This is exactly what I wanted

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by