配置paddleocr及paddlepaddle解决报错 GLIBCXX_3.4.30 FreeTypeFont

配置

https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.7/StyleText/README_ch.md#style-text

  1. 环境配置
    https://www.paddlepaddle.org.cn/
    根据自己的cuda版本选择paddlepaddle-gpu
# 新建conda环境
# python version
conda create -n paddle python==3.8
# 安装paddlepaddle   
python -m pip install paddlepaddle-gpu==2.5.1.post120 -f https://www.paddlepaddle.org.cn/whl/linux/mkl/avx/stable.html

# paddleocr
git clone https://github.com/PaddlePaddle/PaddleOCR
cd PaddleOCR
pip3 install -r requirements.txt

  1. 报错

anaconda环境version `GLIBCXX_3.4.30‘ not found

attributeerror: ‘FreeTypeFont‘ object has no attribute ‘getsize‘

pip uninstall Pillow
pip install Pillow==9.5
  1. 使用
conda activate paddle
cd PaddleOCR/StyleText

# 单张 
python3 tools/synth_image.py -c configs/config.yml --style_image examples/style_images/1_27RL.png --text_corpus PaddleOCR --language en

# 批量
python3 tools/synth_dataset.py -c configs/dataset_config.yml

你可能感兴趣的:(神经网络,paddlepaddle,人工智能)