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.Cpp-Linux-Gpu.24.2.0

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 194.4MB
  • Date Added:
  • 29/2/2024

Description

It contains Aspose.OCR for C++ 24.2.0 Linux (GPU) release.

File Details

Harness the combined power of Linux and GPU acceleration with Aspose.OCR for C++ 24.2.0 Linux (GPU) release! This release offers optimized performance and flexibility for your OCR tasks.

Integrate GPU Acceleration

This version of the C++ OCR API helps you leverage GPU power to significantly boost OCR processing on Linux, ideal for large-scale or time-sensitive tasks.

Apply Custom Recognition Settings

The powerful OCR API enables C++ developers to seamlessly apply custom recognition settings for individual images within a batch and enhance accuracy for specific content. This code sample demonstrates how to apply custom settings for a specific image.

// Define custom recognition settings
RecognitionSettings customSettings;
customSettings.language_alphabet = language::ukr;

// Add images to the batch
string image1 = "source1.png";
AsposeOCRInput source1;
source1.url = image1.c_str();
string image2 = "source2.png";
AsposeOCRInput source2;
source2.url = image2.c_str();
source2.special_settings = &customSettings;
std::vector<AsposeOCRInput> sources = { source1, source2 };

// Define common recognition settings
RecognitionSettings settings;
settings.language_alphabet = language::ita;

// Extract text from the image
auto result = asposeocr_recognize(sources.data(), sources.size(), settings);

Source*

Public API Upgrades

Aspose.OCR for C++ version 24.2.0 includes an upgraded AsposeOCRInput structure including an optional special_settings property for content-specific recognition control.

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

 English