2D高斯函数无法产生正确的结果

时间:2019-03-30 09:40:28

标签: python numpy gaussian

我想编写一个返回大小为np.array x nx的{​​{1}}的函数,该函数包含均值ny和sd {{1}的居中高斯分布}。下面的代码在某些情况下可以工作,但在许多情况下却不能工作-什么地方出了问题或应该写些什么来得到我所需要的?

mu

以下是一些带有注释的测试用例:

sig

2 个答案:

答案 0 :(得分:2)

您所提出的建议与中庸混淆。在一维情况下,说它居中就是在说它的均值是0。对于2D高斯,可以说有两种均值,定义为对xy的期望。再次说它居中就是说他们都是0

总而言之,您的密度不是居中的2D高斯密度,应为

exp(-((x**2 +y**2) / (2.0 * sigma ** 2)))

如果高斯以(xm, ym)为中心,则密度为

exp(-(((x-xm)**2 +(y-ym)**2) / (2.0 * sigma ** 2)))

但是,没有像中心平均高斯mu这样的东西。

答案 1 :(得分:1)

您的问题是,在创建数据集时,您正在创建已经具有均值和标准差的值。它们之间的距离都由nx,ny参数暗示。然后,当您应用高斯并提供与数据集不同的均值和标准差时,它将显示不在中心的数据集的实际均值,正如您指定的那样,而无需查看数据。

以这种情况为例:

create2dGaussian(1, 1, 5, 5)

您告诉它平均值为1,但分布的中心为0。

import matplotlib.pyplot as plt
import numpy as np

def create2dGaussian(mu, sigma, nx, ny):
    x, y = np.meshgrid(np.linspace(-nx / 2.0, +nx / 2.0, nx), np.linspace(-ny / 2.0, +ny / 2.0, ny))
    d = np.sqrt(x * x + y * y)
    g = mu * np.exp(-((d - mu) ** 2 / (2.0 * sigma ** 2)))

    np.set_printoptions(precision=1, suppress=True)
    print(("x", x))
    print(("y", y))
    print(("d", d))
    plt.imshow(g, cmap='jet', interpolation='nearest')
    plt.colorbar()
    plt.show()

    return g

#create2dGaussian(1, 10, 25, 25) # seems to work
#create2dGaussian(1, 5, 25, 25) # the middle is not quite the peak anymore
#create2dGaussian(1, 5, 25, 25) # the above problem more clearly visible
create2dGaussian(1, 1, 5, 5) # here it is extrem as the middle is now only 0.6

#create2dGaussian(5.0, 10.0, 25.0, 25.0) # mean is still 1 and not 5

输出:

('x', array([
       [-2.5, -1.2,  0. ,  1.2,  2.5],
       [-2.5, -1.2,  0. ,  1.2,  2.5],
       [-2.5, -1.2,  0. ,  1.2,  2.5],
       [-2.5, -1.2,  0. ,  1.2,  2.5],
       [-2.5, -1.2,  0. ,  1.2,  2.5]]))
('y', array([
       [-2.5, -2.5, -2.5, -2.5, -2.5],
       [-1.2, -1.2, -1.2, -1.2, -1.2],
       [ 0. ,  0. ,  0. ,  0. ,  0. ],
       [ 1.2,  1.2,  1.2,  1.2,  1.2],
       [ 2.5,  2.5,  2.5,  2.5,  2.5]]))
('d', array([
       [3.5, 2.8, 2.5, 2.8, 3.5],
       [2.8, 1.8, 1.2, 1.8, 2.8],
       [2.5, 1.2, 0. , 1.2, 2.5],
       [2.8, 1.8, 1.2, 1.8, 2.8],
       [3.5, 2.8, 2.5, 2.8, 3.5]]))
('g', array([
       [0. , 0.2, 0.3, 0.2, 0. ],
       [0.2, 0.7, 1. , 0.7, 0.2],
       [0.3, 1. , 0.6, 1. , 0.3],
       [0.2, 0.7, 1. , 0.7, 0.2],
       [0. , 0.2, 0.3, 0.2, 0. ]]))

2-D Gaussian