How to calculate Signal to noise ratio for a CT scan image?

8 ビュー (過去 30 日間)
Krishna Pavan
Krishna Pavan 2020 年 4 月 8 日
回答済み: Rahul 2024 年 12 月 6 日

回答 (1 件)

Rahul
Rahul 2024 年 12 月 6 日
In order to obtain the Signal to Noise ratio (SNR) of the given CT scan image, consider using the following formula for SNR
  • SNR = 10*log10(signal/noise)
  • Here 'signal' can be considered as the mean of the pixel values of the CT Scan image.
  • Here 'noise' can be considered as the standard deviation of the pixel values of the CT Scan image.
Here is an example:
% Considering 'img' to be the variable containing CT scan image data
signal = mean(double(img(:)));
noise = std(double(img(:)));
SNR = 10*log10(signal/noise);
The following MATLAB Answers also mentions similar approaches:
The following MathWorks documentations can be referred to know more:
Thanks.

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

タグ

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by