我试图将我的图像输入到这个方法中,但是当我尝试绘制图像时,它完全变黑了。
我尝试只输入一张图像并输入整个 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 变黑了。
我究竟做错了什么?