PaddleOCR icon indicating copy to clipboard operation
PaddleOCR copied to clipboard

Multi Language support of Paddle OCR3.0

Open bsaish opened this issue 7 months ago • 2 comments

🔎 Search before asking

  • [x] I have searched the PaddleOCR Docs and found no similar bug report.
  • [x] I have searched the PaddleOCR Issues and found no similar bug report.
  • [x] I have searched the PaddleOCR Discussions and found no similar bug report.

🐛 Bug (问题描述)

I noticed that the PaddleOCR 3.0 recognition model (PP-OCRv5_server_rec) supports four languages:

  1. Chinese

  2. English

  3. Traditional Chinese

  4. Japanese

However, the supported languages for the PP-OCRv5_server_det (detection model) are not clearly specified. In previous versions, there were three separate detection models: one for English, one for Chinese, and a third for multilingual detection.

🏃‍♂️ Environment (运行环境)

OS: win11 IDE: VS2022

🌰 Minimal Reproducible Example (最小可复现问题的Demo)

from paddleocr import TextDetection model = TextDetection(model_name="PP-OCRv5_server_det") output = model.predict("general_ocr_001.png", batch_size=1) for res in output: res.print() res.save_to_img(save_path="./output/") res.save_to_json(save_path="./output/res.json")

bsaish avatar Jun 03 '25 09:06 bsaish

Hello, the PP-OCRv5_server_det model has good support for many languages and can be used directly. If you encounter detection issues with specific languages or character sets, feel free to submit an issue to give us feedback.

cuicheng01 avatar Jun 05 '25 07:06 cuicheng01

Hi,feel free to submit your request directly in this issue: 👉 PaddleOCR Multilingual Support Request #15617

cuicheng01 avatar Jun 06 '25 11:06 cuicheng01

The issue has no response for a long time and will be closed. You can reopen or new another issue if are still confused.


From Bot

TingquanGao avatar Jul 07 '25 12:07 TingquanGao