How to calculate MSE (Mean Squared Error)?
18 ビュー (過去 30 日間)
古いコメントを表示
What is the instruction to calculate mean squared error of two images?
回答 (1 件)
Walter Roberson
2017 年 1 月 20 日
編集済み: Walter Roberson
2017 年 1 月 20 日
2 件のコメント
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)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!