验证码识别PaddleOCR 快速开始

1、安装PaddlePaddle

python3 -m pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple

2、安装PaddleOCR whl包

pip install "paddleocr>=2.0.1" -i https://mirror.baidu.com/pypi/simple

3、识别

paddleocr --image_dir ./imgs_en/254.jpg --lang=en --det false

验证码识别PaddleOCR 快速开始_第1张图片

如果允许报这个错误“libGL.so.1: cannot open shared object file: No such file or directory” 

安装这个库即可

pip install opencv-python-headless

这个只是PaddleOCR的简单使用,它还可以应用到更多场景。

具体使用参考:PaddleOCR/README_ch.md at release/2.6 · PaddlePaddle/PaddleOCR · GitHub

你可能感兴趣的:(Python,人工智能,python,识别)