时间:2021-05-22
技术关键
os 模块的使用
代码实现
from PIL import Imageimport ospath = os.getcwd() # 获取当前路径file_list = os.listdir()for file in file_list: filename = os.path.splitext(file)[0] filexten = os.path.splitext(file)[1] if filexten == '.png' or '.jpg': I = Image.open(file) L = I.convert('L') L.save('灰度 - '+file)效果展示
处理前
处理后
以上内容参考如下:
1.将RGB图像转换为灰度图像:
from PIL import ImageI = Image.open('F:\\pycharm\\picture_format\\data\\lena.jpg')I.show()L = I.convert('L')L.show()输出图像结果图为:
2.将RGB图像转换为1模式图像:
from PIL import ImageI = Image.open('F:\\pycharm\\picture_format\\data\\lena.jpg')I.show()L = I.convert('1')L.show()输出结果图为:
补充代码:
使用Python将图像批量转换为灰度图像并保存
from PIL import Imageimport os input_dir = '输入文件夹/'out_dir = '输出文件夹/'a = os.listdir(file_dir) for i in a: print(i) I = Image.open(file_dir+i) L = I.convert('L') L.save(out_dir+i)总结
到此这篇关于Python批量将图片灰度化的实现代码的文章就介绍到这了,更多相关python 图片灰度化内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例为大家分享了python图片转字符小工具的具体实现代码,供大家参考,具体内容如下fromPILimportImage#灰度与字符的映射ascii_cha
C#将图片2值化示例代码,原图及二值化后的图片如下:原图:二值化后的图像:实现代码:usingSystem;usingSystem.Drawing;namesp
python3批量删除豆瓣分组下的好友的实现代码"""python3批量删除豆瓣分组下的好友2016年6月7日03:43:42codegay我两年前一时冲动在豆
本文所述实例可以实现基于Python的查看图片报纸《参考消息》并将当天的图片报纸自动下载到本地供查看的功能,具体实现代码如下:#coding=gbkimport
1.安装Opencv包pipinstallopvencv-python2.实现代码: 视频转为图片:importcv2cap=cv2.VideoCapture