为什么我用快速开始代码的文本检测模块可以识别,但是用文本识别模块却什么都识别不出来呢 #15470
-
Beta Was this translation helpful? Give feedback.
Answered by
liuhongen1234567
May 29, 2025
Replies: 2 comments 1 reply
-
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Sexcode
-
是的,如果追求比较好的效果的话最好在您的数据上再微调一下。 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
您好,文本识别只能识别裁剪好的单个文本区域,像您这种场景可以直接使用PP-OCRv5 ,先检测出具体的文档区域,再进行识别。参考命令如下: paddleocr ocr -i 448395652-280b2f57-a7f7-4ebe-b000-1ca4013b0f35.jpg --use_doc_orientation_classify False --use_doc_unwarping False --use_textline_orientation False 。我这边看基本上是可以识别出来的。