创建噪声图像(随机噪声)
正如我们可以使用 imnoise :imnoise
制作噪声图像 (A, 'salt &胡椒', [密度])。如何添加特定密度的随机噪声?
Just as we can make a noisy image with imnoise :imnoise
(A, 'salt & pepper',
[density]). How to add random noise with a particular density?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
加性高斯白噪声 (AWGN)?
Additive white Gaussian noise (AWGN)?
将像素作为列表串联,其中 100% 等于所有像素。
简单填写列表1,2,3,4,5,6,7
Wanted 是 x 的像素数量
与位置 [x] 处的想要的数字减去列表元素
的比率,然后列表 [x] nr 应该用白色填充或反转。
Thread your pixels as a List, where 100% equals all pixels.
Simple fill the list 1,2,3,4,5,6,7
Wanted is the ratio amount of pixels
For x to your wanted-number substract list element at position [x]
the list[x] nr should then be filled with white or be inverted.