I am doing OCR using Tesseract on a quad-core processor. For better speed, I want to read 4 words at a time, using 4 threads. Is it safe to call Tesseract from multiple threads concurrently?
Note: each thread will be working on a different, non-shared image.
Note: guarding with locks is not ok because of speed.