random noise matlab.
조회 수: 6 (최근 30일)
이전 댓글 표시
how to add random noise to image in matlab?
댓글 수: 0
채택된 답변
David Young
2011년 4월 1일
There are many choices you might make for the distribution of the noise. For independent additive Gaussian noise you could do this:
noisyImage = originalImage + noiseAmplitude * randn(size(originalImage));
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!