フィルターのクリア

SNR between two images in MATLAB

5 ビュー (過去 30 日間)
Franta Cymorek
Franta Cymorek 2019 年 2 月 21 日
コメント済み: Franta Cymorek 2019 年 2 月 21 日
Below is the algorithm for calculating the SNR of two images in MATLAB:
A = imread('Yes_Noise.png');
A = imgaussfilt(A, 2); %Filtered image
ref = imread('Yes_Noise.png'); %Noisy image
test = snr(ref,ref-A)
Is it the algorithm rigth? It's purpose is find out the SNR value between filtered and nosiy image.
  4 件のコメント
Adam
Adam 2019 年 2 月 21 日
21-02-2019 16-32-34.png
is what the help says, assuming snr is the Matlab Signal Processing Toolbox function. So assuming the difference between the smoothed image and the original is considered noise then yes, subtractubing the filtered image from the original will give this.
Franta Cymorek
Franta Cymorek 2019 年 2 月 21 日
Thanks...

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeGeometric Transformation and Image Registration についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by