解決したいこと
pyocrの利用ができない。
例)
pyocrを利用する過程で、下記のようなエラーが(ターミナルで)発生しました。
ディレクトリに問題があると思うのですが、解決方法がわからないので、教えてください。
おそらくコードに問題はないと思いますが、一応コードも載せます。
*使用環境
vscode バージョン: 1.52.1
python バージョン:3.9.1
macOS Big Sur バージョン:11.2.1
発生している問題・エラー
raise TesseractError(status, errors) pyocr.error.TesseractError: (1, b'Error opening data file /usr/local/share/tessdata/jpn.traineddata\nPlease make sure the TESSDATA_PREFIX environment variable is set to your "tessdata" directory.\nFailed loading language \'jpn\'\nTesseract couldn\'t load any languages!\nCould not initialize tesseract.\n')
該当するソースコード
Python
1#***には名前が入ります。 2#色々書いてるので見にくいと思います。すいません。 3 4import pyautogui as pag 5import pyocr 6from PIL import Image 7import sys 8import subprocess 9 10import pyperclip 11import os 12import time 13from pyscreeze import ImageNotFoundException 14 15CLOSE_BUTTON_X = 13 16CLOSE_BUTTON_Y = 40 17 18acr_path = '/Applications/Adobe Acrobat Reader DC.app' 19todekede_path = '/Users/***/Downloads/lec_rpa/todokede_data/' 20 21todokede_list = os.listdir(todekede_path) 22 23NAME_W = 500 24 25def detect_name_posi(): 26 pag.moveTo(1, 1) 27 for count in range(50): 28 try: 29 #x, y, w, h = pag.locateOnScreen('/Users/***/Desktop/lec_rpa/shimei.png') 30 x, y, w, h = pag.locateOnScreen('/Users/***/Downloads/lec_rpa/pdf_icon.png') 31 break 32 except ImageNotFoundException: 33 time.sleep(1) 34 return x, y, w, h 35 36 37def get_name_img(x, y, w, h, NAME_W): 38 start_x = 1350 39 start_y = 1222 40 name_img = pag.screenshot(region=(start_x, start_y, 350, 70)) 41 return name_img 42 43def run_ocr(tool, name_img): 44 result = tool.image_to_string(name_img, lang='jpn') 45 result = result.replace(' ', '') 46 print(result) 47 return result 48 49 50if __name__ == '__main__': 51 tools = pyocr.get_available_tools() 52 if len(tools) == 0: 53 print("No OCR tool found") 54 sys.exit(1) 55 tool = tools[0] 56 57 58 for idx, file in enumerate(todokede_list): 59 print('open:', file) 60 61 pdf_pro = subprocess.Popen(['open', acr_path, todekede_path+file]) 62 time.sleep(1) 63 64 x, y, w, h = detect_name_posi() 65 print("start_x, start_y, NAME_W, 400") 66 67 name_img = get_name_img(677, 616, 200, 400, 200) 68 69 result = run_ocr(tool, name_img) 70 71 pag.click(CLOSE_BUTTON_X, CLOSE_BUTTON_Y) 72 time.sleep(1) 73 74 if idx == 0: 75 break
自分で試したこと
発生しているエラーを調べて、ディレクトリ?に問題があるんじゃないかなというところまでしかわかりませんでした。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/24 23:11