使用PIL将PNG文件目录加载到Numpy数组中

时间:2019-03-20 19:12:43

标签: python numpy python-imaging-library

我正在尝试使用以下功能(使用PIL)将PNG文件的目录加载到python中:

def load_images_from_folder(folder):
    images = []
    for filename in os.listdir(folder):
        print("filename:", filename)
        img = np.array(Image.open(os.path.join(folder,filename)))
        images.append(img)
    return images

但是,这似乎仅加载一个文件,而不是整个目录。此功能对我来说似乎是正确的,所以我不明白为什么会这样。可以通过这种方式加载完整目录吗?

谢谢。

0 个答案:

没有答案