I’m working on automating data extraction from the viewer screen of Alaris Capture Pro, specifically trying to extract handwritten text to assist with indexing.
Could anyone advise which OCR engines are free to use within UiPath for this purpose in 2025? I’m aware there is built in OCR engine like Tesseract and UiPath Document OCR.
Hello @ashokkarale, thank you for the reply! Could I check if UiPath Document OCR are free for commercial use? I tried using UiPath Document OCR in Get OCR Text but encounter the following error: UiPathOCRException: InvalidReponse - not sure if i need any API key.
@lingi , I recommend developing your own OCR engine using Python and the Tesseract library. You can package this engine as an executable (.exe) file and integrate it with UiPath to extract and read your data.
This approach is both efficient and license-free. Please let me know if you require further details or assistance
The only thing that you need is modify the Python code to allow the text extraction and change in Studio project the called function under the Invoke Python Method.
This approach is also good idea, in some environments custom python code is restricted. In such scenario, convert this python code into exe and call that exe by using start process from UiPath. This approach does not required any python environment to execute python code.