标签: python matplotlib
我有21张图片存储在我的文件夹path="home/images"中,我希望在一个图中可视化。
path="home/images"
我怎么能这样做,因为每个情节都有一个标题?
谢谢
答案 0 :(得分:0)
我首先使用glob:
from PIL import Image import glob image_list = [] for filename in glob.glob('home/images*.gif'): #assuming gif im=Image.open(filename) image_list.append(im)
然后按照this等示例绘制它们 查看更多示例here