码迷,mamicode.com
首页 > 其他好文 > 详细

好玩图像pil处理

时间:2019-04-10 21:55:11      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:inf   增强   tps   format   save   rpe   技术   blog   wal   

首先这是代码,

# 锐度,增强因子为1.0是原始图片
# 锐度增强
enh_sha = ImageEnhance.Sharpness(image)
sharpness = 3.0
image_sharped1 = enh_sha.enhance(sharpness)
image_sharped1.save(os.path.join(parent, ‘{}_sha1.jpg‘.format(name)))

# 锐度减弱
enh_sha = ImageEnhance.Sharpness(image)
sharpness = 0.8
image_sharped2 = enh_sha.enhance(sharpness)
image_sharped2.save(os.path.join(parent, ‘{}_sha2.jpg‘.format(name)))

dir = ‘E:/4/‘
for parent, dirnames, filenames in os.walk(dir):
for filename in filenames:
fullpath = os.path.join(parent + ‘/‘, filename)
if ‘jpg‘ in fullpath:
print(fullpath, parent)
augument(fullpath, parent)

 

 原图找了《缘某空》的男主的妹妹,挺可爱的

 

技术图片

这是增强锐度之后,还是那么可爱,

 

 技术图片

继续增强锐度,

技术图片

 

 

 好了,就到这里。

 

好玩图像pil处理

标签:inf   增强   tps   format   save   rpe   技术   blog   wal   

原文地址:https://www.cnblogs.com/hy120040/p/10686222.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!