Python Notes16:数据集

Python Notes16:数据集

标准化数据集

所有图片修改为64x64像素的
from PIL import Image import os def get_smaller(path_in, name, path=None, width=64, length=64): ''' 检查文件夹是否建立,并建立文件夹 ''' if path == None: tar = os.path.exists(os.getcwd() + "\\" + name) if not tar: os.mkdir(os.getcwd() + "\\" + name) im_path = os.getcwd() + "\\" + name + "\\" else: tar = os.path.exists(path + "\\" + name) if not tar: os.mkdir(path + "\\" + name) im_path = path + "\\" + name + "\\" i = 1 list_image = os.listdir(path_in) for item in list_image: '''检查是否有图片''' tar = os.path.exists(im_path+str(i)+'.jpg') if not tar: image = Image.open(path_in+'\\'+item) smaller = image.resize((width, length), Image.ANTIALIAS) '''注意这里如果不加转换,很可能会有报错''' if not smaller.mode == "RGB": smaller = smaller.convert('RGB') smaller.save(im_path+str(i)+'.jpg') i += 1