Tesseract处理背景渐变的图片

Posted Jayson

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tesseract处理背景渐变的图片相关的知识,希望对你有一定的参考价值。

在Tesseract处理背景渐变图片不太理想的情况下, 可以利用Pillow库, 创建一个阈值过滤器来去掉渐变的背景色, 只把文字留下来, 从而让图片更清晰, 便于Tesseract读取:

 1 from PIL import Image
 2 import subprocess
 3 
 4 def cleanFile(filePath, newFilePath):
 5     image = Image.open(filePath)
 6 
 7     # 对图片进行阈值过滤, 然后保存
 8     image = image.point(lambda x: 0 if x<143 else 255)
 9     image.save(newFilePath)
10 
11     # 调用系统的tesseract命令对图片进行ocr识别
12     # subprocess.call(["tesseract", newFilePath, "output"])  //报错:文件找不到
13     subprocess.call(["C:/Program Files (x86)/Tesseract-OCR/tesseract", newFilePath, "output"])
14 
15     # 打开文件读取结果
16     outputFile = open("output.txt", \'r\')
17     print(outputFile.read())
18     outputFile.close()
19 
20 cleanFile("text_2.png", "text_2_clean.png")

以下两张图片分别为text_2.png和text_2_clean.png

以上是关于Tesseract处理背景渐变的图片的主要内容,如果未能解决你的问题,请参考以下文章

CSS背景渐变

背景图片渐变且切换

CSS背景渐变图片问题

用HTML怎么在网页中实现图片渐变 应该怎么写?

请问一下CSS3样式中如何让背景渐变与背景图片共存啊!

从扫描图像中去除背景渐变