⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 addcountingnoise.m

📁 cell migration resource imaging icsmatlab
💻 M
字号:
function noiseMatrix=addCountingNoise(matrix, coefficient)

% adds random numbers normally distributed with variance coefficeint*mean(image)
% to an image matrix

noiseMatrix=randn(size(matrix));
%noisyMatrix=matrix+coefficient*max(nonzeros(matrix))*noiseMatrix.*sqrt(matrix);

noiseMatrix=matrix+coefficient*noiseMatrix.*sqrt(matrix);
% puts to 0 the negative elements

noiseMatrix(find(noiseMatrix<0)) = 0;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -