我正试图对我的直方图执行核密度估计,该直方图已在图像上计算:
我使用scikit learn使用高斯核计算核密度估计:
histogram = np.histogram(img, bins=256, range=(0,255), normed=False)
X = histogram[0][:, np.newaxis]
X_plot = np.linspace(0,255,256,)[:, np.newaxis]
kde = KernelDensity(kernel='gaussian', bandwidth=0.5).fit(X)
log_dens = kde.score_samples(X_plot)
res = np.exp(log_dens)
然而,当我绘制'res'时,我只得到它的前3/4不同于0的值。我不明白为什么我没有得到一个好的估计,而我已经按照这里给出的说明:
http://scikit-learn.org/stable/auto_examples/neighbors/plot_kde_1d.html正如您所提到的,您不需要执行直方图步骤。给定一组样本,KernelDensity.fit
估计密度。然后,您只需在预定义的网格上绘制密度估计。
plt.figure()
X_plot = np.arange(255)[:, None] # predefined grid
# estimate density on samples
kde = KernelDensity(kernel='gaussian', bandwidth=0.2).fit(X.ravel()[:, None])
log_dens = kde.score_samples(X_plot) # evaluate the density model on the data.
plt.plot(np.exp(log_dens))
plt.show()