You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In German word breaks at the end of some line are represented by a "-" directly after the last character of the word.
The Android App "OCR" concatenates lines appending a space after the line-break character.
Otherwise OCR does a superb job!
The issue could easily be fixed with the following procedure when concatenating lines:
If a line contains a "-" at the end, check the first word of the next line:
if the word is "und" or "oder" keep the "-" and insert a space when concatenating the lines (current procedure)
with other first word: when the word starts with a lower case character drop the "-" when concatenating the lines, otherwise keep the "-"; do NOT insert an additional space when concatenating the lines.
The text was updated successfully, but these errors were encountered:
in some rare cases as shown in the second attachment commenting the OCR result, my suggested procedure will incorrectly drop a space: usage of "-" at the end of a line back referencing a word used in some additional context.
Example in the OCR result, where my suggestion would fail: "Microsoft- auf ein lokales Konto" - if this "-" would have been at the end of the line.
However this is a very, very rare case!
In German word breaks at the end of some line are represented by a "-" directly after the last character of the word.
The Android App "OCR" concatenates lines appending a space after the line-break character.
Otherwise OCR does a superb job!
The issue could easily be fixed with the following procedure when concatenating lines:
If a line contains a "-" at the end, check the first word of the next line:
The text was updated successfully, but these errors were encountered: