Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Aspose.OCR for C++ allows you to implement an event listener and report recognition progress using asposeocr_set_progress_tracker() function.
For each page or file, the following information is reported:
void progress_tracker(const AsposeOCRProgress& input)
{
std::cout << "Number of images: " << input.images_amount
<< " current image: " << input.current_image_number
<< " current state: " << input.current_state << std::endl;
}
<...>
asposeocr_set_progress_tracker(&progress_tracker);
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.