Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
When this mode is enabled, OCR engine detects tabular structures on an image and extracts text from cells. This areas detection mode is recommended when working with scanned spreadsheets, financial and accounting reports, invoices, and other tables.
However, this algorithm is inefficient when dealing with large amounts of text, such as pages from books and newspaper articles. Try detect_areas_mode_enum::DOCUMENT instead.
The following code sample demonstrates how to use this document areas detection algorithm:
// Provide the image
string file = "source.png";
AsposeOCRInput source;
source.url = file.c_str();
std::vector<AsposeOCRInput> content = { source };
// Fine-tune recognition
RecognitionSettings settings;
settings.detect_areas_mode = detect_areas_mode_enum::TABLE;
// 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::wcout << std::wstring(buffer) << std::endl;
// Release the resources
asposeocr_free_result(result);
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.