Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Aspose.OCR for C++ is distributed as a NuGet package or as a downloadable file.
Aspose offers four options for Aspose.OCR for C++ NuGet package:
There is no need to download and install any software - the package and all its dependencies can be added to your project directly from Microsoft Visual Studio. All packages are installed and updated in the same way, so they will later be referred as “Aspose.OCR for C++”.
NuGet Package Manager UI is the easiest way to install and update Aspose.OCR for C++ in your project.
NuGet Package Manager Console lets you install and update Aspose.OCR for C++ in your project using PowerShell commands.
Open your solution or a project in Microsoft Visual Studio.
Click Tools menu, select NuGet Package Manager and click Package Manager Console.
Execute the command:
Install-Package Aspose.Ocr.Cpp
to install the latest version of Aspose.OCR NuGet package for Windows.Install-Package Aspose.Ocr.Cpp-GPU
to install the latest version of GPU-accelerated Aspose.OCR NuGet package for Windows.Install-Package Aspose.Ocr.Cpp-Linux
to install the latest version of Aspose.OCR NuGet package for Linux.Install-Package Aspose.Ocr.Cpp-Linux-Gpu
to install the latest version of GPU-accelerated Aspose.OCR NuGet package for Linux.Open your solution or a project in Microsoft Visual Studio.
Click Tools menu, select NuGet Package Manager and click Package Manager Console.
Checks if there are newer versions available for any installed packages by executing a command Get-Package -updates
. If an update is available, you will see something like this:
Id Versions Description ProjectName
-- -------- ----------- -----------
Aspose.OCR.Cpp {22.9.0} Aspose.OCR for C++ is a powerful yet... ConsoleApp1
Update Aspose.OCR for C++ to the latest version by executing a command Update-Package [package name]
(depending on your platform).
To update to a specific version, provide its name in the -Version
parameter . For example: Update-Package Aspose.OCR.Cpp -Version 22.9.0
.
To use a downloaded Aspose.OCR component in your application:
#include "aspose_ocr.h"
in your code.Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.