我正在开发一个CNN以使用基于tensorflow的TFlearn对图像进行分类,现在我使用scipy.misc.imread创建数据集,并将图像大小设置为150x150,channels = 3,现在我得到一个包含以下内容的列表4063(我的图像数)(150、150、3)数组,现在我想将其转换为nd-array(4063、150、150、3),我不知道如何解决,请帮忙我。先感谢您!

import numpy as np
import os
import tensorflow as tf
from scipy import misc
from PIL import Image

IMAGE_SIZE = 150
image_path = "dragonfly"

labels = np.zeros((4063, 1))
labels [0:2363] = 1
labels [2364:4062] = 0
test_labels = np.zeros((200, 1))
test_labels [0:99] = 1
test_labels [100:199] = 0

fset = []
fns=[os.path.join(root,fn) for root,dirs,files in os.walk(image_path) for fn in files]
for f in fns:
    fset.append(f)

def create_train_data():
    train_data = []
    fns=[os.path.join(root,fn) for root,dirs,files in os.walk(image_path) for fn in files]
    for f in fns:
        image = misc.imread(f)
        image = misc.imresize(image, (IMAGE_SIZE, IMAGE_SIZE, 3))
        train_data.append(np.array(image))
    return train_data

train_data = create_train_data()
print (len(train_data))

training_data = train_data[0:2264] + train_data[2364:3963]
train_labels = np.concatenate((labels[0:2264], labels[2364:3963]))
test_data = train_data[2264:2364] + train_data[3963:4063]


train_data是我得到的,这是我想要转换的列表

最佳答案

如果您有形状(150、150、3)的图像列表(numpy数组),则可以通过constructor或调用np.asarray函数(隐式调用构造函数)将外部列表简单地转换为numpy数组。 ):

np.array([np.ones((150,150,3)), np.ones((150,150,3))]).shape
>>> (2, 150, 150, 3)


编辑:在您的情况下将此添加到create_train_data函数返回。:

return np.array(train_data)




另外,如果要将多个numpy数组添加到新的numpy数组中,则可以使用numpy.stack在新维度上添加它们。

import numpy as np
img_1 = np.ones((150, 150, 3))
img_2 = np.ones((150, 150, 3))

stacked_img = np.stack((img_1, img_2))
stacked_img.shape
>>> (2, 150, 150, 3)

关于python - 将列表转换为n维数组以提供给TFlearn,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45607481/

10-12 23:07