失敗コード 現象:screen.png以外 何も表示されません
python
1#import sys 2#print(sys.version) 3 4""" 5 3.8.5 (default, Jul 28 2020, 12:59:40) [GCC 9.3.0] 6""" 7 8 9import pytesseract 10from PIL import Image 11 12url_img = 'screen.png'# screen2 or 3 13img = Image.open(url_img) 14number = pytesseract.image_to_string(img) 15print (number)
何か良い方法はないでしょうか?
あなたの回答
tips
プレビュー