how to calculate snr of an image
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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??
0 Kommentare
Antworten (1)
Rik
am 16 Jul. 2017
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(:));
0 Kommentare
Siehe auch
Kategorien
Mehr zu Image Filtering and Enhancement finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!