RecAPI
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Properties Modules Pages
STATISTIC Struct Reference

Recognition statistics. More...

#include <KernelApi.h>

Public Attributes

int iChrNumber
 
int iWordNumber
 
int iChrRejected
 
DWORD iRecognitionTime
 
DWORD iReadingTime
 
DWORD iScanTime
 
DWORD iPreprocTime
 
DWORD iDecompTime
 

Detailed Description

Recognition statistics.

Processing statistics structure associated with the processing of the last accessed page.

Note
A value of zero (0) in a timing field indicates that either the relevant process has not been performed or it has been performed but resulted in zero due to timing resolution.
The time spent in the Progress indication user callback function (if any) is not taken into account in these time measurements.
The total processing time that a single image spends in the Engine until recognition data or the final output document is produced can be calculated as follows: iTotal = iScanTime + iPreprocTime + iDecompTime + iReadingTime.

Member Data Documentation

◆ iChrNumber

int STATISTIC::iChrNumber

Number of recognized characters on the last page.

◆ iChrRejected

int STATISTIC::iChrRejected

Number of rejected characters on the last page.

◆ iDecompTime

DWORD STATISTIC::iDecompTime

Page-layout decomposition time in 1/1000 secs (i.e. auto-zoning).

◆ iPreprocTime

DWORD STATISTIC::iPreprocTime

Image preprocessing time in 1/1000 secs.

◆ iReadingTime

DWORD STATISTIC::iReadingTime

Reading time in 1/1000 secs. This includes the time iRecognitionTime, the time necessary for sorting the output coming from the different recognition modules, the time spent with the checking module and the time required to produce the recognition result (e.g. the time necessary to write the recognition result into the recognition data file). This field may also include the time needed for transferring the recognition result from the current page into the final output document (kRecConvert2DTXT)

  • supposing that the statistical information was requested after conversion to the final output document.

◆ iRecognitionTime

DWORD STATISTIC::iRecognitionTime

The recognition time (in 1/1000 secs) that the page spent in the different recognition modules during the recognition process.

◆ iScanTime

DWORD STATISTIC::iScanTime

Scanning time (in 1/1000 secs) required for loading the page from the scanner, image file or from the application's memory.

◆ iWordNumber

int STATISTIC::iWordNumber

Number of recognized words on the last page.