Aspose.OCR for CPP 21.2 Release Notes
All Features
Key | Summary | Category |
---|---|---|
OCRCPP-169 | Add blacklist for recognition symbols | Enhancement |
Enhancements
- Added ability to set ignored symbols for recognition
Public API and Backwards Incompatible Changes
New API
Structure | Description |
---|---|
RecognitionSettings | Settings for the image recognition. Contains elements that allow customizing the recognition process. Fields: - all_image (true/false) - turning on means recognizing the image as a single area new field: |
Removed APIs
No Changes
Example (C++17 since filesystem)
#include <iostream>
#include <aspose_ocr.h>
#include <filesystem>
#include <corecrt_io.h>
#include <fcntl.h>
int main()
{
_setmode(_fileno(stdout), _O_U16TEXT);
//Current directory const
std::filesystem::path path{ std::filesystem::current_path() };
/* asposeocr_set_license */
const std::string lic = "/Aspose.Total.lic";
std::filesystem::path license = path.string() + lic;
asposeocr_set_license(license.string().c_str());
/* asposeocr_set_license */
bool lic_result = asposeocr_get_state();
//Recognize image
std::filesystem::path image = path.string() + "/p.png";
// Prepare buffer for result (in symbols, len_byte = len * sizeof(wchar_t))
const size_t len = 4096;
wchar_t buffer[len] = { 0 };
/* asposeocr_page_from_uri*/
const char* uri = "https://www.castlegateit.co.uk/wp-content/uploads/2016/09/justified_text.png";
RecognitionSettings settings;
settings.all_image = true;
settings.ignoredCharacters = L"ao1.,";
size_t res_len = asposeocr_page_from_uri(uri, buffer, len, settings);
std::wcout << buffer;
/* asposeocr_page_settings*/
RecognitionSettings settings_img;
settings_img.all_image = false;
settings_img.ignoredCharacters = L"0123456789";
res_len = asposeocr_page_settings(image.string().c_str(), buffer, len, settings_img);
std::wcout << buffer;
}