0

Python OCRにPytesserを使用しています。PIL と Pytesser をインストールし、次のコードを実行しました。

from pytesser import *
image = Image.open('C:\\Users\\panzer400\\Desktop\\fnord.tif')
print image_to_string(image)

するとこんなエラーが出ます

    Traceback (most recent call last):
  File "<pyshell#2>", line 1, in <module>
    print image_to_string(image)
  File "C:\Python27\lib\pytesser\__init__.py", line 30, in image_to_string
    util.image_to_scratch(im, scratch_image_name)
  File "C:\Python27\lib\pytesser\util.py", line 7, in image_to_scratch
    im.save(scratch_image_name, dpi=(200,200))
  File "C:\Python27\lib\site-packages\PIL\Image.py", line 1406, in save
    self.load()
  File "C:\Python27\lib\site-packages\PIL\ImageFile.py", line 164, in load
    self.load_prepare()
  File "C:\Python27\lib\site-packages\PIL\ImageFile.py", line 231, in load_prepare
    self.im = Image.core.new(self.mode, self.size)
  File "C:\Python27\lib\site-packages\PIL\Image.py", line 37, in __getattr__
    raise ImportError("The _imaging C module is not installed")
ImportError: The _imaging C module is not installed

これはどういう意味ですか?私は何を間違えましたか?Windows 8 64 ビットと Python 2.7.9 を使用しています

4

1 に答える 1

0

pytesseract を使用してこの同じエラーが発生していましたが、これは非常に似ていると思います。私にとってうまくいったのは、代わりにPillow((最近メンテナンスされた?)PILのフォーク)をインストールすることでした。import Imageのインスタンスをに変更する必要がある場合がありますfrom PIL import Image

(Pillow は引き続き PIL としてインポートされることに注意してください)

于 2015-07-21T21:56:23.920 に答える