i wann to calculate MSE & PSNR.

3 views (last 30 days)
Gautam Kudale
Gautam Kudale on 9 Jun 2012
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

Answers (2)

Sajid Khan
Sajid Khan on 21 Jun 2013
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
Sajid Khan on 21 Jun 2013
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.

Tags

Community Treasure Hunt

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

Start Hunting!