前提・実現したいこと
anacondaの仮想環境でpyocrを使って画像から文字を読み込みたい。
発生している問題・エラーメッセージ
FileNotFoundError: [Errno 2] No such file or directory: 'test.png'
該当のソースコード
python
1ソースコード 2>>> from PIL import Image 3>>> import pyocr 4>>> engines = pyocr.get_available_tools() 5>>> engine = engines[0] 6>>> txt = engine.image_to_string(Image.open('test.png'),lang="eng") 7Traceback (most recent call last): 8 File "<stdin>", line 1, in <module> 9 File "C:xxxx\anaconda3\lib\site-packages\PIL\Image.py", line 2968, in open 10 fp = builtins.open(filename, "rb") 11FileNotFoundError: [Errno 2] No such file or directory: 'test.png'
試したこと
windowsシステムの環境変数にanacondaの仮想環境のPathを通しました。
補足情報(FW/ツールのバージョンなど)
Python 3.8.11 (default, Aug 6 2021, 09:57:55) [MSC v.1916 64 bit (AMD64)] :: Anaconda, Inc. on win32
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/09/29 02:22
2021/09/29 02:24
2021/09/29 02:34
2021/09/29 02:39