I met a problem when trying to recognize one-digit numbers and % #811
Unanswered
NataliaAssange
asked this question in
Q&A
Replies: 1 comment
-
for columns where you have one digit number its better to ocr each element in the that column one by one and then lower threshold for each ocr operation to 0. if you want it to return a value when you only give the number '0', make sure to lower the threshold, text_threshold values to 0 in the readtext parameter for the reader class. CRAFT has issues detecting characters when only single characters are there, so if you lower the threshold for character detection, it will detect it. |
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
-
I'm using this code to recognize a chart like this
but I have 2 problems
my code is
reader.readtext(picpath, min_size=0,detail=0,width_ths=0.7)
what should I do?
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions