i wann to calculate MSE & PSNR.
이전 댓글 표시
i am doing edge detection. i have taken 1 gray scale image. and by applying diff edge detection methods on them i find the results. i have calculated mean and SD of resultant image.
now i want to calculate MSE & PSNR. of them
pls guide me
답변 (2개)
Sajid Khan
2013년 6월 21일
0 개 추천
Hi Gautam,
It's the link for calculating root mean square error from which you can calculate mean square error as the difference is just a root involved in one
And here is the link to calculate PSNR
Sajid Khan
2013년 6월 21일
0 개 추천
Or try this if you want to calculate mse for a 2D array,
err_val = mean(mean((orig_matrix - est_matrix).^2));
But if you have 1d Array, you can use mean function only once, by the way if you call mean multiple times without having it's requirement, the result will be same, it will just waste your debugging time only.
카테고리
도움말 센터 및 File Exchange에서 Image Quality에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!