how to calculate snr of an image

8 次查看(过去 30 天)
ayesha
ayesha 2017-7-16
回答: Rik 2017-7-16
I am working on images of CT scans. I would like to find out the signal to noise ratio of the image and compare it with other images. How to calculate the snr of the images??

回答(1 个)

Rik
Rik 2017-7-16
The first hit on Google for me was the Wikipedia page. From this section, it is trivial to write code accordingly:
SNR=mean(CT(:))/std(CT(:));
Just a hint: next time have a read here and here. It will greatly improve your chances of getting an answer and also help you to find the answers yourself.

类别

Help CenterFile Exchange 中查找有关 Image Filtering and Enhancement 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by