7

Mac Maverickで pytesser (リンク) のこの例に従おうとしています。

>>> 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
4

1 に答える 1