python图片批量Resize切换大小

## image resizer
# 批量resize
import numpy as np
import cv2
import os

dir_path = os.path.join(os.getcwd(), 'D:/EZ/Segmentation/512/512_original') #要处理的的图像所在的文件夹,也可以是绝对路径
# 这样调用时,图像所在的文件夹(bdz_image)与程序在同一目录下

for filename in os.listdir(dir_path):
    # If the images are not .JPG images, change the line below to match the image type.
    if filename.endswith(".jpg"):
        name = os.path.join(dir_path,filename) #要resize的图像的名字
        image = cv2.imread(name)
        resized = cv2.resize(image,None,fx=0.664935, fy=0.664935, interpolation=cv2.INTER_AREA)
        re_dir_path = os.path.join(os.getcwd(), 'D:/EZ/Segmentation/512/512_json_output', filename)# 存储resize后的文件夹,也可以是绝对路径
        cv2.imwrite(re_dir_path,resized)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值