easyocr图像识别
Easyocr — 3行代码识别图片中的任意语言文字-Python 实用宝典 (pythondict.com)
这个是github库地址JaidedAI/EasyOCR: Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc. (github.com)
里面有讲要先安装pytorch哦
1、安装easyocr
>pip install easyocr
但不知道为何给我下载了这么多版本号(因为没装pytorch先)
2、下载模型文件,放入~/.easyocr/model目录下,我就下了两个模型,一个是中文简体模型,一个文字检测模型(下载链接在上文附的帖子中)
还是推荐这边下载https://www.jaided.ai/easyocr/modelhub/,然后置于~/.easyocr/model这个目录下
如果你没下载之前的模型的话,这里会自动下载,这是第二代模型了
但我在anaconda的环境中导入没有问题
在vscode中导入easyocr有如下的错误信息
1、如果是没有安装easyocr的环境,import easyocr的话提示如下2、安装有easyocr的环境,提示如下
这个问题是以为vscode默认的是powershell,要改为cmd才行