how to implement a MATLAB function to add Gaussian noise ?
显示 更早的评论
I need to implement a function in Matlab to add Gaussian noise to an image let's say cameraman.tif but without using imnoise
Thanks in advance
回答(3 个)
Rick Rosson
2012-4-7
function y = addWhiteNoise(x,snr)
%
% snr is the signal-to-noise ratio expressed in decibels
%
stdev = ...
z = stdev*randn(size(x));
y = x + z;
end
Rick Rosson
2012-4-7
0 个投票
Hi Mina,
What have you done so far? Please post your code.
Thanks!
Rick
类别
在 帮助中心 和 File Exchange 中查找有关 Descriptive Statistics 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!