RecoStar ICR/OCR for DotImage
An add-on to DotImage Document Imaging
The DotImage RecoStar OCR Engine Add-on allows you to integrate the Open Text RecoStar Full Page Reader into your applications that are built using DotImage. The engine is also available in an OCR/ICR version that can read written text in addition to machine-printed text.
Processing speed
This Add-on works with the same recognition technology as Open Text Capture Recognition Engine, the premium OCR product by Open Text. Therefore, it's is just as fast. High processing speed, in turn, generates cost savings because if large document volumes are transferred to a server, a high processing speed reduces the required hardware equipment. Not only that, speed is also a paramount factor when it comes to the integration of OCR into a document scanner or multi-functional peripheral. In this case, it is essential that the conversion keeps pace with the speed.
Top-notch recognition rates even for poor-quality documents
The integrated Multi Expert Voting, i.e., the comparison of results of recognition engines operating in parallel, combined with the system’s context knowledge, produces almost error-free results.
Reliability
A server software must not fail under any circumstances. For more than 30 years, the RecoStar OCR engine is renown for its robustness and reliability and is standard in almost all applications defined as “mission-critical”. The DotImage add-on follows this tradition.
Cost savings—specific task for a fair price
The performance of the software and its price allow Full Page Reader to be used in any environment. The pricing model ensures low investment costs for both large and small. Please call us to discuss your specific needs.
Toll-free: 866-568-0129
International: 1-413-572-4443
There is no runtime-royalty free pricing for the RecoStar OCR Engine runtimes.
Features
- Supports the European Character Set
- Reports individual character position and size
- Reports character confidence
- Properly OCR's rotated pages, reporting the rotation angle
- Can automatically break merged characters, or merge broken characters
- Can optionally reject low confidence characters
- Can optionally reject low confidence lines
- Can disable recognition of specific characters
- Full Page color OCR can be generated when combined with the Searchable PDF Module
Read this Knowledgebase article to see how to download the RecoStar resources and get an evaluation license
The RecoStar OCR engine gives many options for extracting the text from your images. Through only a few lines of code, you have access to the characters, alternate characters, and location of the text from a selected region of interest:
private void PerformOcr()
{
RecoStarEngine engine = new RecoStarEngine();
engine.Initialize();
OcrPage page = engine.Recognize(myImage, myBounds);
OcrTextRegion region = page.Regions[0] as OcrTextRegion;
engine.ShutDown();
engine.Dispose();
}