Gets some statistic information about the latest successful recognition process.
#include "ltocr.h"
L_LTOCR_API L_INT EXT_FUNCTION L_OcrPage_GetRecognizeStatistics(page, statistic)
Handle to the OCR page.
Address to L_OcrRecognizeStatistic structure to be updated with recognition statistics.
| Value | Meaning |
|---|---|
| SUCCESS | The function was successful. |
| < 1 | An error occurred. Refer to Return Codes. |
Gets some statistic information about the latest successful recognition process.
You can use this method after calling L_OcrPage_Recognize to get some statistic information about the latest successful recognition process like number of recognized characters, words and rejected characters.
L_INT L_OcrPage_GetRecognizeStatisticsExample(){BITMAPHANDLE bitmap = { 0 };L_OcrEngine ocrEngine = NULL;L_OcrPage ocrPage = NULL;// Create an instance of the engineL_INT retCode = L_OcrEngineManager_CreateEngine(L_OcrEngineType_LEAD, &ocrEngine);if(retCode != SUCCESS)return retCode;// Start the engine using default parametersL_OcrEngine_Startup(ocrEngine, NULL, OCR_LEAD_RUNTIME_DIR);// Load image to processL_LoadBitmap(MAKE_IMAGE_PATH(L_TEXT("Ocr1.tif")), &bitmap, sizeof(BITMAPHANDLE), 0, ORDER_RGB, NULL, NULL);L_OcrPage_FromBitmap(ocrEngine, &ocrPage, &bitmap, L_OcrBitmapSharingMode_AutoFree, NULL, NULL);bitmap.Flags.Allocated = 0;// Process the pageL_OcrPage_AutoPreprocess(ocrPage, L_OcrAutoPreprocessPageCommands_Deskew, NULL, NULL);// AutoZone & Recognize the pageL_OcrPage_Recognize(ocrPage, NULL, NULL);// Show the statistic about the last recognize operationL_OcrRecognizeStatistic pageStatistics;pageStatistics.StructSize = sizeof(L_OcrRecognizeStatistic);L_OcrPage_GetRecognizeStatistics(ocrPage, &pageStatistics);std::cout << "Recognized characters: " << pageStatistics.RecognizedCharacters << std::endl;std::cout << "Recognized words: " << pageStatistics.RecognizedWords << std::endl;std::cout << "Rejected characters: " << pageStatistics.RejectedCharacters << std::endl;//CLEANUPif(bitmap.Flags.Allocated)L_FreeBitmap(&bitmap);if(ocrPage != NULL)L_OcrPage_Destroy(ocrPage);if(ocrEngine != NULL)L_OcrEngine_Destroy(ocrEngine);return SUCCESS;}