python读取图片并修改格式与大小的方法
作者:alwaysPractice 时间:2021-05-13 09:13:25
本文实例为大家分享了python读取图片并修改文件大小的具体代码,供大家参考,具体内容如下
# Author:NDK
# -*- coding:utf-8 -*-
from PIL import Image
import os
import cv2
import numpy as np
import glob
# old_dir = './test/'
# def read_image(cwd, newpath):
# for roots, dirs, files in os.walk(cwd):
# print(dirs)
# for i in dirs:
# print(i)
# os.chdir(cwd + i)
# for pic in glob.glob('*.png'):
# _, image = pic.split('_')
# img = image.split('.')[0]
# print(img)
# if len(img) != 0:
# if int(img) % 2 != 0:
# im = Image.open(pic)
# im.save(newpath + i + '/' + pic)
# read_image('./num/','./new_img/')
# for i in range(10):
root_path = r"/test/9/" #操作文件路径
print(root_path)
# dir = root_path+"images"+"/"
dir = root_path
count = 0
for root,dir,files in os.walk(dir):
for file in files:
srcImg = cv2.imread(root_path+"/"+str(file))
img = Image.open(root_path+"/"+str(file))
print(root_path+str(file))
newImg = img.resize((50, 50), Image.BILINEAR) #想调整的大小
cv2.imwrite(r'./img2/'+str(file),newImg) # 写入文件地址
来源:https://blog.csdn.net/jjjndk1314/article/details/79749752
标签:python,读取图片
0
投稿
猜你喜欢
Python 处理带有 \\u 的字符串操作
2022-01-24 03:43:13
Django完整增删改查系统实例代码
2022-11-13 03:07:27
Python中二维列表如何获取子区域元素的组成
2021-02-16 02:41:01
如何利用Python处理excel表格中的数据
2022-10-27 03:32:38
一文读懂navicat for mysql基础知识
2024-01-23 00:46:25
解析xml字符串的函数
2008-06-10 12:37:00
MySql安装步骤图文教程及中文乱码的解决方案
2024-01-28 23:19:33
python 使用元类type创建类
2021-06-27 21:11:48
Python调用腾讯云短信服务发送手机短信
2021-10-07 16:55:38
OpenCV实现直线检测
2023-08-14 01:37:35
详解django.contirb.auth-认证
2021-12-21 16:48:40
Pandas中DataFrame常用操作指南
2023-08-31 14:14:41
mysql数据库备份及恢复命令 mysqldump,source的用法
2024-01-22 21:05:10
Python获取浏览器窗口句柄过程解析
2022-05-25 10:37:33
精妙的SQL和SQL SERVER 与ACCESS、EXCEL的数据导入导出转换
2024-01-15 18:21:30
python 多线程死锁问题的解决方案
2023-12-28 03:35:31
pandas 选取行和列数据的方法详解
2022-12-29 19:28:58
Python threading Local()函数用法案例详解
2021-11-27 21:57:02
python区块链持久化和命令行接口实现简版
2023-10-28 09:43:08
python 实现批量xls文件转csv文件的方法
2023-08-29 10:25:26