ERROR From STD 'standard deviation'

1 Ansicht (letzte 30 Tage)
Soum
Soum am 10 Jul. 2013
Hello every one; is anyone knows how can I extract the error between two images from their variance? knowing that I have the STD which equals = SQRT(Variance)
Thanks ;

Akzeptierte Antwort

Image Analyst
Image Analyst am 10 Jul. 2013
If you define error as the standard deviation of the absolute value of the difference between the image intensities, then you can do
differenceImage = abs(double(image1) - double(image2));
theErros = std(differenceImage(:));
You might also look at other definitions, like MSE ( http://en.wikipedia.org/wiki/Mean_squared_error), PSNR ( http://en.wikipedia.org/wiki/PSNR), and SSIM ( http://en.wikipedia.org/wiki/SSIM).
  5 Kommentare
Image Analyst
Image Analyst am 11 Jul. 2013
Bearbeitet: Image Analyst am 11 Jul. 2013
You cannot get a difference image, (Noisy Image-De-noised Image), from a single number, like 6.54868543 for example. I hope you understand why. It seems so basic that I shouldn't even have to explain why. What if I told you the mean of an image? Could you tell me what the original image looked like? No, of course not, because there are an infinite number of images that could have that mean. Well it's the same with the standard deviation - there's just not enough information to recover the original image(s).
Soum
Soum am 11 Jul. 2013
mmm ok Thanks

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by