-
Notifications
You must be signed in to change notification settings - Fork 721
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Process batch files from momery #224
Comments
You can use the tesseract option for list of files. Just pass string with the path to the text file that contains the list of images. Check the pytesseract docs for more info and example. |
Was hoping to do everything in memory. Is that possible? |
pytesseract is just a wrapper to the C++ tesseract standalone program, so if you have the files in the python memory, pyteeseract doesn't support direct processing (via pipe/ipc), it will save it as a file on disk. There is a related open issue #172 |
Referencing and closing as duplicate in favor of #172 |
Is there a way I could batch feed tesserect memory files to speed it up?
The text was updated successfully, but these errors were encountered: