Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Non-fatal recognition errors are stored as a list of strings in the Warnings
property of the recognition result.
Aspose.OCR.AsposeOcr recognitionEngine = new Aspose.OCR.AsposeOcr();
// Add an image to OcrInput object
Aspose.OCR.OcrInput input = new Aspose.OCR.OcrInput(Aspose.OCR.InputType.SingleImage);
input.Add("source.png");
// Recognize image
Aspose.OCR.OcrOutput results = recognitionEngine.Recognize(input);
// Output warnings
foreach(string warning in result[0].Warnings)
{
Console.WriteLine(warning);
}
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.