Replies: 1 comment 2 replies
-
Hello, PPOCRv5 has added support for the Finnish language in version 3.1.0. You can perform Finnish language recognition by setting from paddleocr import PaddleOCR
ocr = PaddleOCR(
lang="fr", # Specify French recognition model with the lang parameter
use_doc_orientation_classify=False, # Disable document orientation classification model
use_doc_unwarping=False, # Disable text image unwarping model
use_textline_orientation=False, # Disable text line orientation classification model
)
result = ocr.predict("https://paddle-model-ecology.bj.bcebos.com/paddlex/imgs/demo_image/general_ocr_french01.png")
for res in result:
res.print()
res.save_to_img("output")
res.save_to_json("output") To utilize the French recognition capabilities of PP-OCRv5, you need to upgrade the paddleocr version to at least 3.1.0. If you want to use paddleocr==2.10.0, you can use PP-OCRv3's Latin language recognition. However, there may be some differences in recognition accuracy compared to v5. For more details, please refer to the documentation. https://paddlepaddle.github.io/PaddleOCR/main/en/version3.x/algorithm/PP-OCRv5/PP-OCRv5_multi_languages.html#2-quick-start |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am writing to inquire about Finnish language OCR support and would appreciate your guidance on the following matters:
Key Questions
1. Finnish Recognition Model Update Schedule
2. Compatibility with Current Environment
Additional Context
We look forward to your response and appreciate all the excellent work the PaddleOCR team continues to do.
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions