I have a simple tesseract image to string line of code (pytesseract.image_to_string('myimage.png')) in order convert a snippet of random floats to a list. The issue that I have is tesseract outputs the floats in order of top to bottom first rather than how people would conventionally read text (left to right then moving onto the next line). Is there a way that I can force tesseract to read my image left to right?
Here is an example of one of my snippets.
The output that I get is (seperated by lines): 3791 672.0 63070 ....
The desired output is: 3791 3792 3718 ....