0

我试图将我的图像输入到这个方法中,但是当我尝试绘制图像时,它完全变黑了。

我尝试只输入一张图像并输入整个 MNIST 数据集。结果相同。

https://github.com/lisa-lab/pylearn2/blob/master/pylearn2/expr/preprocessing.py

if GCN is True:
    trainingFolder = "../inputData/converted_training/GCN/"
    testingFolder = "../inputData/converted_testing/GCN/"

    img0 = (data[1,1:]).reshape((28,28)).astype('uint8')*255
    im = Image.fromarray(img0)
    im.show()

    #GCN#
    img_gcn = global_contrast_normalize(data)
    img_gcn_1 = Image.fromarray(img_gcn[1,1:].reshape((28,28)).astype('uint8')*255)
    img_gcn_1.show()

第二个图像 img_gcn_1 变黑了。

我究竟做错了什么?

4

1 回答 1

0

您是否尝试过在不乘以 255 的情况下可视化图像?IE,

import matplotlib.pyplot as plt

img = img_gcn[:, 0]
img = img.reshape(28, 28, order='F')    
plt.imshow(img, cmap=plt.get_cmap('gray'))

我认为该程序应该有效。

于 2015-07-21T22:36:22.727 回答