JinpengLI / deep_ocr

make a better chinese character recognition OCR than tesseract
1.52k stars 486 forks source link

11.2号,我没有成功 #27

Open ssserenity opened 7 years ago

ssserenity commented 7 years ago

运行deep_ocr_reco,报错:ImportError: No module named ocrolib 剩下的几个可执行文件报错则是:ImportError: No module named cv2 看了一下requirement.txt里面确实没有cv2,不知道这里怎么过的。

JinpengLI commented 7 years ago

因为这是旧版的。不好意思,还没有整理好新版的。

On Wed, Nov 1, 2017 at 8:29 PM, ssserenity notifications@github.com wrote:

运行deep_ocr_reco,报错:ImportError: No module named ocrolib 剩下的几个可执行文件报错则是:ImportError: No module named cv2 看了一下requirement.txt里面确实没有cv2,不知道这里怎么过的。

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/JinpengLI/deep_ocr/issues/27, or mute the thread https://github.com/notifications/unsubscribe-auth/ADLUDajUQyDX_wINHxwRZWckMJqCi3yQks5syMatgaJpZM4QOs4P .

act64 commented 7 years ago

No module named ocrolib +1

diegozeng commented 7 years ago

Any timeline for the new version?

zyxrrr commented 6 years ago

@JinpengLI 你好,我目前还是存在这个问题, File "./bin/deep_ocr_reco", line 15, in import deep_ocr.ocrolib as ocrolib ImportError: No module named ocrolib 请问是什么问题

swiftech commented 6 years ago

+1

mountainguan commented 6 years ago

什么时候能放出可用的版本...感觉现在运行都运行不了还840颗星

alswl commented 6 years ago

Python sys.path error, temporary solution:

copy bin/* .
python deep_ocr_reco data/holiday_notification.jpg -v -d
SolinTao commented 6 years ago

@ssserenity @act64 @zyxrrr 在 ./bin/deep_ocr_reco中 import deep_ocr.ocrolib as ocrolib 前面添加 import os,sys sys.path.append(os.getcwd()) import没有加全路径,不过解决了这个问题,后面依然有很多不通过