def saveImages(image_list, name_list, path):
"""Saves the list of images in the folder specified by path"""
i = 0
for image in image_list:
name = name_list[i]
io.imsave("./images/" + path + "/" + name + ".jpg", image)
i += 1
评论列表
文章目录