Do variance get increased by increasing SNR?
조회 수: 1 (최근 30일)
이전 댓글 표시
I have added SNR of 20 to an image using the below formula of variance
SNR = [var(image)/var(noise)]
var(noise)=var(image)/SNR
in matlab code...
v = var(I(:)) / 10;% SNR=10
I_noisy = imnoise(I, 'gaussian', 0, v);
Is it correct?...
댓글 수: 0
답변 (1개)
Image Analyst
2013년 5월 9일
No, it's not. Well maybe it might be close if your image was 100% noise and no signal. Otherwise there is no basis for your assumption that the noise is the same as the variance of the image.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Read, Write, and Modify Image에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!