热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

python获取图像亮度和锐度,pytesseract获取图片上字符串,及增加亮度,色感,对比度,锐度...

fromPILimportImageimportpytesseracttextpytesseract.image_to_string(Image.open(.picpythont

from PIL import Image

import pytesseract

text = pytesseract.image_to_string(Image.open("./pic/pythontest.png"))

print(text)

def pic_dispose(x):

image = Image.open(x)

image.show()

#亮度

enh_bri = ImageEnhance.Brightness(image)

brightness = 1.8

image_brightened = enh_bri.enhance(brightness)

image_brightened.show()

#色感

enh_col = ImageEnhance.Color(image)

color = 1.5

image_colored = enh_col.enhance(color)

image_colored.show()

# 对比度增强

enh_con = ImageEnhance.Contrast(image)

contrast = 1.5

image_contrasted = enh_con.enhance(contrast)

image_contrasted.show()

# 锐度增强

enh_sha = ImageEnhance.Sharpness(image)

sharpness = 3.0

image_sharped = enh_sha.enhance(sharpness)

image_sharped.show()

pic_dispose("./pic/pythontest.png")



推荐阅读
author-avatar
张力宏智荣琬郁_271
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有