OCR Progress and Performance Tracking
The IronTesseract
object has an OcrProgress
event that can be used to track OCR progress. We can track progress using the OcrProgresEventsArgs
object sent to this event after any page of OCR text has finished reading.
This is useful in GUI application, Web Applications and CLI alike to keep users informed of how long they may need to wait.
How to Track OCR Progress and Performance
- Install an OCR library for OCR performance and progress tracking.
- Build an
IronTesseract
object. - Verify progress using a
OcrProgress
instance. - Add the necessary Tesseract parameters and the photo path into the object.
- Apply all necessary image-processing methods.
- Use the Read method to read text from a
OcrInput
object.