Python实现OCR识别之pytesseract案例详解
作者:Holidaylovesam 时间:2021-03-02 02:14:35
Python实现OCR识别:pytesseract
Python常用pytesseract进行图片上的文字识别,即OCR识别,完整的代码比较简单,只要下面一行即可,但是实际使用时环境配置上容易出错。
from PIL import Image
import pytesseract
text = pytesseract.image_to_string(Image.open('/Users/alice/Documents/Develop/PythonCode/textinphoto.PNG'))
print(text)
因此使用前,需要先安装pillow和pytesseract依赖包。
然而运行时仍然报错,raise TesseractNotFoundError()
pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it's not in your path
原因是因为未安装tesseract,然后使用pip3 install tesseract之后仍然提示错误,如图:
alicedembp:~ alice$ pip3 install tesseract
Requirement already satisfied: tesseract in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (0.1.3)
alicedembp:~ alice$ tesseract
-bash: tesseract: command not found
无法使用,往上找了很多教程,说是要使用brew安装,于是得以解决,步骤为:
先安 * rew
alicedembp:~ alice$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
再使用brew安装leptonica
alicedembp:~ alice$ brew install leptonica
使用brew安装tesseract
alicedembp:~ alice$ brew install tesseract
安装成功,通过命令行tesseract -v的方式查看是否成功,出现版本号则为安装成功
alicedembp:~ alice$ tesseract
Usage:
tesseract --help | --help-extra | --version
tesseract --list-langs
tesseract imagename outputbase [options...] [configfile...]
OCR options:
-l LANG[+LANG] Specify language(s) used for OCR.
NOTE: These options must occur before any configfile.
Single options:
--help Show this help message.
--help-extra Show extra help for advanced users.
--version Show version information.
--list-langs List available languages for tesseract engine.
alicedembp:~ alice$ tesseract -v
tesseract 4.0.0
leptonica-1.78.0
libgif 5.1.4 : libjpeg 9c : libpng 1.6.36 : libtiff 4.0.10 : zlib 1.2.11 : libwebp 1.0.2 : libopenjp2 2.3.1
Found AVX2
Found AVX
Found SSE
接下来就可以直接使用了,使用如下代码:
alicedembp:~ alice$ tesseract /Users/alice/Documents/Develop/PythonCode/textinphoto.png /Users/alice/Documents/Develop/PythonCode/output.txt
打开textinphoto.PNG的图片,将文字输出到output.txt,图片如下
运行成功,产生output.txt文档,里面的文本为图片中识别出的文字。
来源:https://blog.csdn.net/alice_tl/article/details/89299405
标签:python,OCR,pytesseract
0
投稿
猜你喜欢
Python socket实现的简单通信功能示例
2023-03-03 07:49:40
Python+django实现文件下载
2022-03-10 15:54:16
栅格:灵活应变
2008-07-22 12:22:00
python实现kmp算法的实例代码
2022-07-19 15:07:16
python绘制散点图和折线图的方法
2021-08-24 04:27:56
Python-for循环的内部机制
2023-02-02 20:47:18
python实现ip查询示例
2021-07-07 20:04:32
Python 多线程爬取案例
2022-11-17 16:02:06
15个短代码示例理解python丰富的编程思维
2022-07-18 08:16:57
Python中的pandas表格模块、文件模块和数据库模块
2024-01-28 05:32:45
Python 字典与字符串的互转实例
2023-06-27 07:51:22
JavaScrpt的面向对象全面解析
2024-04-23 09:20:40
python3发送request请求及查看返回结果实例
2023-09-18 11:34:10
20分钟成功编写bootstrap响应式页面 就这么简单
2023-08-12 06:12:13
JS实现密码框根据焦点的获取与失去控制文字的消失与显示效果
2024-04-10 10:50:20
使用豆瓣提供的国内pypi源 <font color=red>原创</font>
2023-05-31 20:39:09
js+css实现有立体感的按钮式文字竖排菜单效果
2024-04-22 13:09:42
基于Vue实现图书管理功能
2024-04-27 16:16:59
PHP实现的curl批量请求操作示例
2023-11-17 01:51:10
MS SQL 查询数据在数据库中所在行
2009-04-26 19:36:00