Tesseract openMp #73
-
Hi all, so i would ask why these two variants gave me same results(duration calculation)? is there anything i missed or they're really same? also when i use two instances of tessApi processing time is increased while i guess to have better results? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, if you need to process the flow of images sequentially (in order), then you would have single Tesseract instance and in that case it would be faster to use OpenMP variant. If you want to process multiple images at once, then use standard variant and create multiple Tesseract instances and process the images this way in separate threads. But you mention the sample project crashes when you switched it to OpenMP variant? I'll check that. |
Beta Was this translation helpful? Give feedback.
Hi, if you need to process the flow of images sequentially (in order), then you would have single Tesseract instance and in that case it would be faster to use OpenMP variant.
If you want to process multiple images at once, then use standard variant and create multiple Tesseract instances and process the images this way in separate threads.
But you mention the sample project crashes when you switched it to OpenMP variant? I'll check that.