Fast recognition
Contents
[
Hide
]
Very simple and clear images, such as high-quality scans, do not require automated corrections and areas detection.
Aspose.OCR can work in the fastest recognition mode that consumes minimum possible resources using RecognizePageFast
method of AsposeOCR
class.
AsposeOCR api = new AsposeOCR();
String result = RecognizePageFast("source.png");
System.out.println("Recognition result:\n" + result + "\n\n");
Performance impact
This method is about twice as fast as regular recognition and is recommended for public web applications and mobile devices.
Drawbacks
This recognition mode does not work with skewed images and does not support recognition settings. However, you can preprocess an image before sending it to the OCR engine.