创建噪声图像(随机噪声)

发布于 2025-01-07 23:19:53 字数 94 浏览 0 评论 0原文

正如我们可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

总以为 2025-01-14 23:19:53

加性高斯白噪声 (AWGN)?

z = mu + randn(size(im)).*sigma;
im = im + z;

Additive white Gaussian noise (AWGN)?

z = mu + randn(size(im)).*sigma;
im = im + z;
南城追梦 2025-01-14 23:19:53

将像素作为列表串联,其中 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文