04-17-2021 11:43 PM
Hello Everyone. I am doing some work on image processing and I am confused to solve a problem. I am acquiring the following string when it reads "Hello world". But the problem is all the words are combined. Please can anybody tell me how to separate words during Training the vision assistant or it can be separated after acquiring string which is shown below. I appreciate your help.
Solved! Go to Solution.
04-18-2021 01:23 AM
There is no way for the OCR tools to detect the spaces, but you can probably do it in post processing.
You should be able to retrieve information about each character recognized. If you compare the right edge of a character to the left edge of the next character, you will notice there is a larger gap when there is a space. You could do a loop through the characters and insert a space if the gap is large. Figuring out what a large gap is depends on your font.
Bruce