Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Aspose.OCR can work in the fastest recognition mode that consumes minimum possible resources using RecognizeFast
method of Aspose.OCR.AsposeOcr
class.
This method takes OcrInput
object and returns a list of strings, one string per image.
Aspose.OCR.AsposeOcr recognitionEngine = new Aspose.OCR.AsposeOcr();
// Add images to OcrInput object
Aspose.OCR.OcrInput images = new Aspose.OCR.OcrInput(Aspose.OCR.InputType.SingleImage);
images.Add("source1.png");
images.Add("source2.png");
// Fast recognize images
List<string> results = recognitionEngine.RecognizeFast(images);
foreach(string result in results)
{
Console.WriteLine(result);
}
This method is about twice as fast as regular recognition.
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.