give me a description about the code below
显示 更早的评论
function im_o = Add_noise( im, v )
seed = 0; randn( 'state', seed ); noise = randn( size(im) ); % noise = noise/sqrt(mean2(noise.^2)); im_o = double(im) + v*noise; function im_o = Add_noise( im, v )
1 个评论
dpb
2013-7-31
I'd described it as poorly/not formatted.
What, specifically, is the question?
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Rician Distribution 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!