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.4.0

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 14.64MB
  • Date Added:
  • 30/4/2024

Description

Aspose.OCR for C++ 24.4.0 Linux GPU release. You can selectively download advanced OCR feature as needed, keeping the project lean and modular.

File Details

Aspose.OCR for C++ 24.4.0 (Linux GPU) unlocks the power of your GPU for significantly faster OCR processing in your Linux-based C++ applications.

Utilize the Power of GPU Acceleration

Developers can now leverage their GPU for faster and more efficient image recognition on the Linux platform.

Experience Selective Feature Downloads

With the latest C++ OCR API release, you can choose only the OCR features they need and reduce code size while improving performance.

Downloading Resources Automatically

The upgraded AsposeOCRResourceLoadSettings structure lets you configure resource loading behavior effortlessly. This version allows automatic resource download within your Linux-based C++ apps. This code example illustrates how you can download resources automatically and apply custom settings with asposeocr_set_resource_load_settings().

AsposeOCRResourceLoadSettings load_settings;
std::string root_path = "models";
load_settings.resource_root_path = root_path.c_str();
load_settings.lazy_load = true;
asposeocr_set_resource_load_settings(load_settings);
// Set recognition language
RecognitionSettings settings;
settings.language_alphabet = language::eng;
// Provide the image  for recognition
string file = "source.png";
AsposeOCRInput source;
source.url = file.c_str();
vector<AsposeOCRInput> content = {source};
// Extract text from the image
AsposeOCRRecognitionResult result = asposeocr_recognize(content.data(), content.size(), settings);

Source*

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

 English