Unwanted 180-Degree Rotation and Text Recognition Errors in General Table Recognition V2 Pipeline #15747
-
I'm using the "General Table Recognition V2 Pipeline," and I've encountered an issue where the pipeline occasionally rotates vertically correct oriented images by 180 degrees before performing text detection and recognition. As a result, when the text is extracted, PaddleOCR fails to recognize the text properly, outputting random or gibberish strings like "eeeeer e, tyter." Code Used
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Since you set |
Beta Was this translation helpful? Give feedback.
-
Please try the following settings: output = pipeline.predict( |
Beta Was this translation helpful? Give feedback.
Please try the following settings:
output = pipeline.predict(
input = "processed_images/page_3.png",
use_table_orientation_classify=False,
use_doc_orientation_classify=False,
use_doc_unwarping=False,
)