필터 지우기
필터 지우기

How to calculate SNR

조회 수: 4 (최근 30일)
itai
itai 2014년 2월 26일
댓글: itai 2014년 2월 26일
Hi,
I need to calculate the SNR of imaging system. I have a image of the system that contains edge target (half image black and half white). How can i calculate the SNR of the system if i don't know the signal and the noise in the image.
please help me, Itai

채택된 답변

Image Analyst
Image Analyst 2014년 2월 26일
Assuming the noise mean has zero bias, just take the mean of the image over the white part of the target and the black part of the target, and take the standard deviation, then divide
meanWhiteGL = mean2(whitePartOfImage);
stdWhiteGL = std(double(whitePartOfImage(:)));
SNRWhite = meanWhiteGL / stdWhiteGL;
Same for the black part of the image. It's possible that the two regions could have different SNRs.
  댓글 수: 1
itai
itai 2014년 2월 26일
thank you, but if the two results of the SNR is different what is the correct result? what i choose?
Itai

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by