使用cncor得到的是textscoreposition textscoreposition textscoreposition
est7 opened this issue · 4 comments
est7 commented
之前是好用的,mac 自从12.3后不再提供pyhton2.7,自己用python3跑了下不管怎么截图得到的都是数个 textscoreposition 这三个在cnocr里面正好是OcrResult的三个参数,不知道怎么没正确返回
Chandler-Lu commented
不好意思我现在没有 mac 可以帮您测试,我的这个项目本身就是提供给 py3 使用的,所以应该不会有问题。
我在 windows 下,Python 3.7.11,cnocr 2.1.2.1 测试正常。可能没有办法帮到您
codebysandwich commented
应该是cncor的版本问题。我的cnocr版本2.2.1,python版本3.8,自己测试后可以试试以下的方法:
将workflow包里的ocr.py中的cnocr_ocr方法做如下修改
def cnocr_ocr(pic_path):
from cnocr import CnOcr
ocr = CnOcr()
res = ocr.ocr(pic_path)
for val in res:
print(val['text'])
Chandler-Lu commented
非常感谢提供方案,可能是cnocr新版的输出又改了emmm
On Aug 22, 2022, at 14:45, sandwich ***@***.***> wrote:
@est7<https://github.com/est7>
应该是cncor的版本问题。我的cnocr版本2.2.1,python版本3.8,自己测试后可以试试以下的方法:
将workflow包里的ocr.py中的cnocr_ocr方法做如下修改
def cnocr_ocr(pic_path):
from cnocr import CnOcr
ocr = CnOcr()
res = ocr.ocr(pic_path)
for val in res:
print(val['text'])
—
Reply to this email directly, view it on GitHub<#14 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AELZJMX2R243XP7UX25VREDV2MOYJANCNFSM56IQVVQA>.
You are receiving this because you commented.Message ID: ***@***.***>
est7 commented