![]() |
[求助]MATLAB中怎么产生高斯噪声?
急需讨论怎样在MATLAB中产生高斯噪声,我是直接调用IMNOISE函数,请问还有其他方法吗
|
normrnd(mu,sigma)
我用normrnd(mu,sigma),不知道你可不可以用
|
我看看啊
好像还可以用RANDN加高斯数组! |
回复: MATLAB中怎么产生高斯噪声?
% Test image: the usual suspect...
im = imread('lena512.bmp'); im = double(im)/256 ; % Generate noisy image. rho=3; sig = std(im(:)); sigma = sig / rho; nim = im + sigma * randn(size(im)); |
所有时间均为北京时间。现在的时间是 14:52。 |
Powered by vBulletin
版权所有 ©2000 - 2025,Jelsoft Enterprises Ltd.