Calculate SNR in single image in MATLAB

不想你离开。 提交于 2019-12-06 07:22:21

The definition of SNR can be found here or here:

Both the standard and the industry definition can be used (10log(x) and 20log(x)). check this

now, the signal is equal to the mean of the pixel values (mean(img(:))) and the noise is the standard deviation or error value of the pixel values (std(img(:))).

You may use either the ratio or the SNR=10*log10(signal/noise) to express the result in decibel.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!