Python-opencv下批量修改文件夹下图片的尺寸

"author:youngkun date:20180615 function:change the size of pictures in one folder"
import cv2
import os

image_size=224                          #设定尺寸
source_path="./0/"                     #源文件路径
target_path="./change_size/0/"        #输出目标文件路径

if not os.path.exists(target_path):
    os.makedirs(target_path)

image_list=os.listdir(source_path)      #获得文件名

i=0
for file in image_list:
    i=i+1
    image_source=cv2.imread(source_path+file)#读取图片
    image = cv2.resize(image_source, (image_size, image_size),0,0, cv2.INTER_LINEAR)#修改尺寸
    cv2.imwrite(target_path+str(i)+".jpeg",image)           #重命名并且保存
print("批量处理完成")







你可能感兴趣的:(Python-opencv下批量修改文件夹下图片的尺寸)