How to calculate MSE (Mean Squared Error)?
조회 수: 3 (최근 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!