How to calculate MSE (Mean Squared Error)?
21 views (last 30 days)
Show older comments
What is the instruction to calculate mean squared error of two images?
Answers (1)
Walter Roberson
on 20 Jan 2017
Edited: Walter Roberson
on 20 Jan 2017
2 Comments
Walter Roberson
on 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)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!