Aspose.Ocr.Cpp-Linux
24.4.0
See the version list below for details.
dotnet add package Aspose.Ocr.Cpp-Linux --version 24.4.0
NuGet\Install-Package Aspose.Ocr.Cpp-Linux -Version 24.4.0
<PackageReference Include="Aspose.Ocr.Cpp-Linux" Version="24.4.0" />
paket add Aspose.Ocr.Cpp-Linux --version 24.4.0
#r "nuget: Aspose.Ocr.Cpp-Linux, 24.4.0"
// Install Aspose.Ocr.Cpp-Linux as a Cake Addin #addin nuget:?package=Aspose.Ocr.Cpp-Linux&version=24.4.0 // Install Aspose.Ocr.Cpp-Linux as a Cake Tool #tool nuget:?package=Aspose.Ocr.Cpp-Linux&version=24.4.0
Optical character recognition (OCR) API for C++
![Downloads]Windows-CPU / Windows-GPU / Linux-CPU / Linux-GPU
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License
This package can be used to develop applications for different operating systems and platforms. You can build both 32-bit and 64-bit software.
Please note: Aspose.OCR for C++ requires ONNX Runtime 1.11.0 or later (CPU / GPU).
API overview
Aspose.OCR for C++ can extract text from photos, scans, PDF documents and other graphical files. It allows you to add OCR functionality to a desktop or web application in less than 10 lines of code, without having to delve into complex mathematical operations, neural networks, and other technical details.
- Ready-to-use OCR engine with superior recognition speed and accuracy.
- Supports 27 languages based on Latin, Cyrillic and Asian scrips.
- Can work with rotated, distorted and noisy images.
- Supports most file formats you can get from a scanner or camera, as well as web links.
- Batch recognition of all images in a folder or archive.
- Recognizes the whole image or selected areas only; identifies words, lines or paragraphs.
- Recognition results are returned in the most popular document and data exchange formats.
- Spell checking of recognition results.
- Full compatibility with other Aspose products - build solutions of any complexity using familiar concepts with minimal code.
Recognition languages
Aspose.OCR can recognize a large number of languages and all popular writing scripts, including texts with mixed languages.
Extended Latin alphabet
- Croatian
- Czech
- Danish
- Dutch
- English
- Estonian
- Finnish
- French
- German
- Italian
- Latvian
- Lithuanian
- Norwegian
- Polish
- Portuguese
- Romanian
- Slovak
- Slovenian
- Spanish
- Swedish
Cyrillic alphabet
- Belorussian
- Bulgarian
- Kazakh
- Russian
- Serbian
- Ukrainian
Asian languages
- Chinese
- Hindi
Supported file formats
Aspose.OCR for C++ can recognize just about any file that you get from a scanner or camera, or download from the Internet:
- JPEG
- PNG
- TIFF
- GIF
- BMP
Recognition results are returned in the most popular document and data exchange formats:
- Plain text
- RTF
- Microsoft Word document
- Microsoft Excel spreadsheet
- Searchable PDF
- JSON
- XML
Get started
You can get familiar with Aspose.OCR for C++ by creating a minimal console application for extracting text from an image.
- Create a basic C++ project in Visual Studio.
- Install this NuGet package to the project.
- Locate an image containing a line of text and save it to the project output directory under the name
source.png
. - Add an image to
AsposeOCRInput
structure:string file = current_dir + "/source.png"; AsposeOCRInput source; source.url = file.c_str(); std::vector<AsposeOCRInput> content{ source };
- Set recognition language:
RecognitionSettings settings; settings.language_alphabet = language::eng;
- Extract text from the image:
auto result = asposeocr_recognize(content.data(), content.size(), settings);
- Output the recognized text:
wchar_t* buffer = asposeocr_serialize_result(result, buffer_size, export_format::text); std::cout << std::wstring(buffer) << std::endl;
- Release the resources (recommended):
asposeocr_free_result(result);
Full code:
// Provide the image
string file = current_dir + "/source.png";
AsposeOCRInput source;
source.url = file.c_str();
std::vector<AsposeOCRInput> content{ source };
// Set recognition language
RecognitionSettings settings;
settings.language_alphabet = language::eng;
// Extract text from the image
auto result = asposeocr_recognize(content.data(), content.size(), settings);
// Output the recognized text
wchar_t* buffer = asposeocr_serialize_result(result, buffer_size, export_format::text);
std::cout << std::wstring(buffer) << std::endl;
// Release the resources
asposeocr_free_result(result);
Run the program. You will see the extracted text in the console output. If the text is too large, the result may be cut off due to trial restrictions. You can get a temporary license to remove all limitations of the trial version for 30 days.
Learn more
Product | Versions Compatible and additional computed target framework versions. |
---|---|
native | native is compatible. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
24.9.0 | 158 | 9/6/2024 |
24.5.0 | 121 | 5/31/2024 |
24.4.0 | 184 | 4/30/2024 |
24.3.0 | 961 | 3/31/2024 |
24.2.0 | 758 | 2/29/2024 |
24.1.0 | 530 | 1/30/2024 |
23.12.0 | 887 | 12/28/2023 |
23.11.0 | 1,251 | 11/30/2023 |
23.10.0 | 1,227 | 10/30/2023 |
23.9.0 | 1,066 | 9/22/2023 |
23.8.0 | 1,194 | 8/31/2023 |
23.6.0 | 1,146 | 7/1/2023 |
23.4.0 | 914 | 4/28/2023 |
23.3.0 | 1,303 | 3/31/2023 |
22.12.0 | 1,249 | 12/2/2022 |
22.11.0 | 1,063 | 11/21/2022 |
22.10.0 | 926 | 10/31/2022 |