推荐一个很好的中文OCR:CnOCR
地址:https://cnocr.readthedocs.io/zh-cn/stable/
from cnocr import CnOcr
img_fp = './weapon/0_0.jpg'
ocr = CnOcr() # 所有参数都使用默认值
out = ocr.ocr(img_fp)
print(out)
推荐一个很好的中文OCR:CnOCR
地址:https://cnocr.readthedocs.io/zh-cn/stable/
from cnocr import CnOcr
img_fp = './weapon/0_0.jpg'
ocr = CnOcr() # 所有参数都使用默认值
out = ocr.ocr(img_fp)
print(out)
评论区