- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试在 Mac Maverick 中遵循这个 pytesser ( link) 的例子。
>>> from pytesser import *
>>> im = Image.open('phototest.tif')
>>> text = image_to_string(im)
但是,在最后一行我收到了这个错误信息:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "pytesser.py", line 31, in image_to_string
call_tesseract(scratch_image_name, scratch_text_name_root)
File "pytesser.py", line 21, in call_tesseract
proc = subprocess.Popen(args)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 711, in __init__
errread, errwrite)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 1308, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory
但是,我不明白我应该做什么。文件 phototest 位于我运行脚本的同一文件夹中。如何解决这个问题?
更新:
当我尝试
brew install tesseract
我收到这个错误:
Warning: It appears you have MacPorts or Fink installed.
Software installed with other package managers causes known problems for
Homebrew. If a formula fails to build, uninstall MacPorts/Fink and try again.
Error: You must `brew link libtiff libpng jpeg' before tesseract can be installed
最佳答案
我实际上和你有同样的错误,这就是我找到这篇文章的方式。我也有解决问题的办法,因为你给了我!
我看到了:
ryan.davis$ python tesseract.py
Traceback (most recent call last):
File "tesseract.py", line 52, in <module>
print (image_to_string(big))
File "/usr/local/lib/python2.7/site-packages/pytesseract/pytesseract.py", line 161, in image_to_string
config=config)
File "/usr/local/lib/python2.7/site-packages/pytesseract/pytesseract.py", line 94, in run_tesseract
stderr=subprocess.PIPE)
File "/usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 710, in __init__
errread, errwrite)
File "/usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 1335, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory
想知道我必须做些什么来解决这个问题吗?正是您所尝试的:brew install tesseract
我已经安装了 tesseract python 库,但没有在系统级别安装它。这样就解决了我的问题。你的呢?
我想你可能已经被这个分心了:
Warning: It appears you have MacPorts or Fink installed. Software installed with other package managers causes known problems for Homebrew. If a formula fails to build, uninstall MacPorts/Fink and try again.
并且没有注意到您的答案已经在 brew 响应中提供了:
You must brew link libtiff libpng jpeg before tesseract can be installed.
也一样:
brew link libtiff
brew link libpng
brew link jpeg
然后:
brew install tesseract
最后:
:)
关于python - image_to_string 在 Mac 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21049425/
我在 Windows 10 机器上使用 python3.7 和 Tesseract-OCR 版本 5。我有包含数字的图片。然而,尽管人眼非常清楚,但 Tesseract 无法正确提取它们。有些人给了我
这里的问题是我需要删除行并编写代码来识别字符。到目前为止,我已经看到了解决方案,其中 char 是实心的,但它有带双边框的 char。 最佳答案 对于这个特定的验证码,有一个非常简单的解决方案。但是,
我在图像中有一个简单的文本 image_ball.png .通常 Tesseract 的 OCR 效果很好,但是对于这个特定的图像,它总是返回一个空字符串。 In [1]: from PIL impo
我正在尝试在 Mac Maverick 中遵循这个 pytesser ( link) 的例子。 >>> from pytesser import * >>> im = Image.open('phot
我正在使用 pytesseract 包中的 image_to_string 函数将单个图片文件的多个部分转换为字符串。除此图像外,所有部分均正常工作: 这是我用来转换它的脚本: from PIL im
我正在尝试使用 OpenCV 和 pytesseract 的 image_to_string() 方法从图像中提取数字,但输出效果不佳。 我尝试了一些预处理方法,如调整大小和噪声过滤器,但仍然无法获得
我最近在 python 中使用了 tesseract OCR,当我尝试从 tesseract 导入 image_to_string 时,我一直遇到错误。 导致问题的代码: # Perform OCR
首先,我想说我知道 pytesser 不适用于 Python 3.4,但我从 http://ubuntuforums.org/archive/index.php/t-1916011.html 中读到p
我正在尝试从 tif 或 tiff 图像文件中读取文本。这些文件有多个页面。 当我打印数组时,我只得到 true,然后没有文本。但是,当我使用 .png 文件时,我能够打印文本。 下面是我的代码。 f
我是 python 编码的新手。我正在使用 Pillow 。以下是代码: >>> from PIL import Image >>> from pytesseract import*
我是一名优秀的程序员,十分优秀!