Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 1.23 KB

how-can-i-use-uipath-to-implement-tesseract-ocr-language-processing.md

File metadata and controls

34 lines (21 loc) · 1.23 KB

How can I use UiPath to implement Tesseract OCR language processing?

// plain

UiPath can be used to implement Tesseract OCR language processing by using the Tesseract activities. These activities provide the ability to recognize text from images, PDFs, and other documents. The Tesseract activities can be used to:

  1. Extract text from images and documents.
  2. Train the Tesseract engine to recognize different languages.
  3. Use the trained engine to recognize text in different languages.

Example code

TesseractEngine engine = new TesseractEngine("C:\\tessdata", "eng", EngineMode.Default);

Page page = engine.Process(@"C:\myImage.png");

Console.WriteLine(page.GetText());

Output example

This is an example of text extracted from an image.

The code above creates a new Tesseract engine, processes an image and prints out the recognized text.

Helpful links

onelinerhub: How can I use UiPath to implement Tesseract OCR language processing?