标签: python image histogram
我有此代码:
norm = colors.Normalize(vmin=gim.min()/2, vmax=gim.max()/2) plt.imshow(gim, cmap='gray', norm=norm) plt.axis('off') hist = np.bincount(gim.ravel(),minlength=256)
,并不断返回此错误:
无法将数组数据从dtype('float64')转换为dtype('int64') 根据“安全”规则
有人可以帮忙吗?