gpt4 book ai didi

image - MATLAB:对高斯噪声使用 imnoise 和 randn 有什么区别

转载 作者:太空宇宙 更新时间:2023-11-03 20:03:52 26 4
gpt4 key购买 nike

在MATLAB中添加加性高斯白噪声时,可以使用预定义的函数

J = imnoise(I,'gaussian',M,V) % I is the image to add the noise

默认情况下,零均值 (M) 和方差 (V) 0.01。此功能的手册是 here .

然而,在各种 MATLAB 代码中,我也看到通过以下方式将加性高斯噪声添加到图像中

sigma = 10; % standard deviation (STD)

g = I + sigma * randn(size(I)); %add gaussian noise with STD 10

这很好。现在,我们知道了方差公式,

[![variance=sigma^2][2]][2]

其中 sigma 是 STD。所以,根据第二个代码,我有 sigma = 10 因此,方差 (V) 应该是 100。使用 MATLAB imnoise 函数来获得零均值和方差 100 应该是这样的

J = imnoise(I,'gaussian',0,100)

但是,即使接近第二个代码,这也不会产生损坏的图像。图像似乎 100% 被噪声损坏了。这有什么不同?我在这里错过了什么吗?

最佳答案

我看到的主要问题是 imnoise 函数需要将图像缩放到 [0,1] 区间(另请参见 answer) .考虑到这一点,100 的方差是没有意义的。您应该缩放图像旁边的方差,希望一切都再次有意义。

关于image - MATLAB:对高斯噪声使用 imnoise 和 randn 有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36590084/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com