python增加图像对比度的方法


Posted in Python onJuly 12, 2019

本代码实现的是,在旋转10度的基础上,再进行增加对比度的操作。

1 代码:

代码注释中的代码都是可以运行的.  但是不怎么靠谱,因为文件名被逐个编辑,有可能与原标签不对应,,更好的做法参考代码2

# -*- coding: UTF-8 -*-
from PIL import Image
from PIL import ImageEnhance
import PIL.Image as img
from PIL import ImageEnhance
import os
 
def rotationImage(filepath,destpath):
 count = 0
 filelist=os.listdir(filepath) #所有文件的文件名
 total_num=len(filelist) #所有文件的个数
 print(total_num) #输出文件个数
 for i in range(total_num): #对每张图像进行操作
  print(count)
  im=img.open(filepath+str(i+21)+str("_training")+".gif")
  for j in range(72):
   im_rotate=im.rotate(j*10) #每张图像都10°旋转一次
   #然后对其增加亮度对比度等操作
 
   enh_con=ImageEnhance.Contrast(im_rotate) #增加对比度 得到1440张
   image_contrasted=enh_con.enhance(1.5)
   image_contrasted.save(destpath + str("cont_") + str((j + 1) * 10) + str("_") + str(i + 21) + str("_") + str("manual1") + '.gif')
   count=count+1
   # enh_sha=ImageEnhance.Sharpness(im_rotate) #增加锐度
   # image_sharped=enh_sha.enhance(3.0)
   # image_sharped.save(destpath + str("sharp_") + str((j + 1) * 10) + str("_") + str(i + 21) + str("_") + str("training") + '.tif')
 
   # enh_bri=ImageEnhance.Brightness(im_rotate) #增加亮度 但是有问题
   # image_bright=enh_bri.enhance(1.5)
   # image_bright.save(destpath + str("bri_") + str((j + 1) * 10) + str("_") + str(i + 21) + str("_") + str("training") + '.tif')
 
   # enh_col=ImageEnhance.Color(im_rotate) #增加色度 但是有问题,
   # image_colored=enh_col.enhance(1.5)
   # image_colored.save(destpath + str("col_") + str((j + 1) * 10) + str("_") + str(i + 21) + str("_") + str("training") + '.tif')
 
  j=0
 
if __name__== '__main__':
 filepath='/home/qxq/Desktop/eyedata_final/train/label/gif/orginal/'
 destpath='/home/qxq/Desktop/eyedata_final/train/label/gif/brighten/'
 rotationImage(filepath,destpath)

2 代码:

更加靠谱的做法如下:

# -*- coding: UTF-8 -*-
from PIL import Image
from PIL import ImageEnhance
import os
 
rootdir = r'/home/qxq/Desktop/eyedata_final/mask/original/' # 指明被遍历的文件夹
for parent, dirnames, filenames in os.walk(rootdir):
 for filename in filenames:
  currentPath = os.path.join(parent, filename)
  im = Image.open(currentPath)
  for j in range(72):
   im_rotate = im.rotate(j * 10) # 每张图像都10°旋转一次
 
   enh_con = ImageEnhance.Contrast(im_rotate) # 增加对比度 得到1440张(20*72=1440)
   image_contrasted = enh_con.enhance(1.5)
   newname1 = r"/home/qxq/Desktop/eyedata_final/mask/brighten/" + 'Cont_' + filename
   image_contrasted.save(newname1)
 
   enh_sha = ImageEnhance.Sharpness(im_rotate) # 增加锐度
   image_sharped = enh_sha.enhance(3.0)
   newname2 = r"/home/qxq/Desktop/eyedata_final/mask/brighten/" + 'sharp_' + filename
   image_contrasted.save(newname2)
 
   #
   enh_bri = ImageEnhance.Brightness(im_rotate) # 增加亮度 但是有问题
   image_bright = enh_bri.enhance(1.5)
   newname3 = r"/home/qxq/Desktop/eyedata_final/mask/brighten/" + 'Bri_' + filename
   image_contrasted.save(newname3)
 
   #
   enh_col = ImageEnhance.Color(im_rotate) # 增加色度 但是有问题,
   image_colored = enh_col.enhance(1.5)
   newname4 = r"/home/qxq/Desktop/eyedata_final/mask/brighten/" + 'Col_' + filename
   image_contrasted.save(newname4)
 
 
  j = 0

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python使用Socket(Https)Post登录百度的实现代码
May 18 Python
python复制文件的方法实例详解
May 22 Python
详解Python 序列化Serialize 和 反序列化Deserialize
Aug 20 Python
Python实现的生成格雷码功能示例
Jan 24 Python
python 日志增量抓取实现方法
Apr 28 Python
Python读取Excel表格,并同时画折线图和柱状图的方法
Oct 14 Python
python 求一个列表中所有元素的乘积实例
Jun 11 Python
详解python 利用echarts画地图(热力图)(世界地图,省市地图,区县地图)
Aug 06 Python
Transpose 数组行列转置的限制方式
Feb 11 Python
Python GUI编程学习笔记之tkinter事件绑定操作详解
Mar 30 Python
python进行OpenCV实战之画图(直线、矩形、圆形)
Aug 27 Python
如何利用python检测图片是否包含二维码
Oct 15 Python
Python 控制终端输出文字的实例
Jul 12 #Python
在Django的View中使用asyncio的方法
Jul 12 #Python
检测python爬虫时是否代理ip伪装成功的方法
Jul 12 #Python
在PyCharm中控制台输出日志分层级分颜色显示的方法
Jul 11 #Python
基于sklearn实现Bagging算法(python)
Jul 11 #Python
Python的log日志功能及设置方法
Jul 11 #Python
python使用装饰器作日志处理的方法
Jul 11 #Python
You might like
php数组函数序列之array_intersect() 返回两个或多个数组的交集数组
2011/11/10 PHP
解析PHP正则提取或替换img标记属性
2013/06/26 PHP
php脚本运行时的超时机制详解
2016/02/17 PHP
centos+php+coreseek+sphinx+mysql之一coreseek安装篇
2016/10/25 PHP
Laravel 5.4因特殊字段太长导致migrations报错的解决
2017/10/22 PHP
layui框架实现文件上传及TP3.2.3(thinkPHP)对上传文件进行后台处理操作示例
2018/05/12 PHP
Laravel框架使用Seeder实现自动填充数据功能
2018/06/13 PHP
扩展javascript的Date方法实现代码(prototype)
2010/11/20 Javascript
谈谈js中的prototype及prototype属性解释和常用方法
2015/11/25 Javascript
轻松实现js选项卡切换效果
2016/09/24 Javascript
JS 中document.write()的用法和清空的原因浅析
2017/12/04 Javascript
vue 动态改变静态图片以及请求网络图片的实现方法
2018/02/07 Javascript
微信小程序自定义音乐进度条的实例代码
2018/08/28 Javascript
手把手带你封装一个vue component第三方库
2019/02/14 Javascript
electron-vue开发环境内存泄漏问题汇总
2019/10/10 Javascript
[01:48:04]DOTA2-DPC中国联赛 正赛 PSG.LGD vs Elephant BO3 第一场 2月7日
2021/03/11 DOTA
在Python中操作时间之strptime()方法的使用
2020/12/30 Python
Python基于pygame实现的弹力球效果(附源码)
2015/11/11 Python
windows下Python实现将pdf文件转化为png格式图片的方法
2017/07/21 Python
利用django-suit模板添加自定义的菜单、页面及设置访问权限
2018/07/13 Python
Python 访问限制 private public的详细介绍
2018/10/16 Python
解决python中 f.write写入中文出错的问题
2018/10/31 Python
Python OpenCV 调用摄像头并截图保存功能的实现代码
2019/07/02 Python
python SQLAlchemy的Mapping与Declarative详解
2019/07/04 Python
python tkinter组件使用详解
2019/09/16 Python
python中count函数知识点浅析
2020/12/17 Python
实例讲解使用SVG制作loading加载动画的方法
2016/04/05 HTML / CSS
美国内衣第一品牌:Hanes(恒适)
2016/07/29 全球购物
营销总经理岗位职责
2014/02/02 职场文书
医学院毕业生自荐信范文
2014/03/06 职场文书
2014年教学管理工作总结
2014/12/02 职场文书
安全生产先进个人总结
2015/02/15 职场文书
学校德育工作总结2015
2015/05/11 职场文书
2015年度环卫处工作总结
2015/07/24 职场文书
SpringBoot SpringEL表达式的使用
2021/07/25 Java/Android
Vue中使用import进行路由懒加载的原理分析
2022/04/01 Vue.js