方法是使用PIL中的Image,可以用来读("Image.open")或者保存("picture.save.(path)")
这里的resample中第二个参数可以改成不同的数字,表示使用不同的采样方式。
from PIL import Image
import os
#原始文件夹
file_path = "vis/";
#修改后图像放置的文件夹
file_new_path = "vis_rgb_320x400/";
rawFiles = os.listdir(file_path);
idx = 0;
for file in rawFiles:
picturePath = file_path + file;
picFile = Image.open(picturePath);
path_vis_resized = file_new_path + file;
#400是宽
picFileNew = picFile.resize((400,320),resample = 0);
picFileNew.save(path_vis_resized);
idx += 1;
print("Processing {}-th image...".format(idx));
标签:idx,vis,Image,修改,file,图像,path,常用工具
From: https://www.cnblogs.com/AWCXV/p/17066827.html