Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.OCR for NET 24.5.0 (msi)

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 136.28MB
  • Date Added:
  • 29/5/2024

Description

It contains MSI of Aspose.OCR for .NET 24.5.0 release.

File Details

Aspose.OCR for .NET 24.5.0 (MSI installer) brings exciting advancements for developers integrating Optical Character Recognition (OCR) functionalities into their C# and VB.NET solutions.

Automatic Image Defect Detection

The newly introduced DetectDefects method in the latest C# OCR API release empowers you to automatically detect potential issues within images that can hinder OCR performance, such as low contrast or blur. Please check out the following code example, which demonstrates detecting shadows and highlights in C#:

var api = new Aspose.OCR.AsposeOcr();
var input = new OcrInput(InputType.SingleImage);
input.Add("source.png");
// Find shadows and highlights
var defects = api.DetectDefects(input, DefectType.LOW_CONTRAST);
foreach (var defect in defects)
{
	Console.WriteLine($"Image path: {defect.Source} | Page: {defect.Page}");
	foreach (var areas in defect.defectAreas)
	{
		Console.WriteLine($"Number of low-contrast areas: {areas.rectangles.Count()}");
	}
}

Source*

Enhanced OCR Accuracy for Latin Languages

Developers can now witness significant improvements in OCR accuracy for a wide range of Latin-based languages, including English, French, Spanish, and more.

Improved Developer Experience

Ensure effortless integration into your existing C# applications or build new ones from scratch. This version allows you to benefit from a fully backward-compatible release.

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.OCR for .NET 24.5.0 Release Notes.

 English