RecAPI
|
Handprinted numeral recognition module. This module is supported on: Windows. More...
Classes | |
struct | HNR_BOXDATA |
Character box of HNR. More... | |
Typedefs | |
typedef HNR_BOXDATA * | LPHNR_BOXDATA |
Pointer type to a HNR_BOXDATA type variable. | |
typedef const HNR_BOXDATA * | LPCHNR_BOXDATA |
Const pointer type to a HNR_BOXDATA type variable. | |
Enumerations | |
enum | HNR_STYLE { STYLE_EURO, STYLE_US } |
Writing style of HNR. More... | |
Functions | |
RECERR RECAPIKRN | kRecSetHnrStyle (int sid, HNR_STYLE db) |
Setting writing style of HNR. | |
RECERR RECAPIKRN | kRecGetHnrStyle (int sid, HNR_STYLE *pdb) |
Getting writing style of HNR. | |
RECERR RECAPIKRN | kRecSetHnrParams (int sid, LPCHNR_BOXDATA pCharbox, INTBOOL bSpaceincl) |
Setting HNR parameters. | |
RECERR RECAPIKRN | kRecGetHnrParams (int sid, LPHNR_BOXDATA pCharbox, INTBOOL *pbSpaceincl) |
Getting HNR parameters. |
Handprinted numeral recognition module. This module is supported on: Windows.
See the general description and the settings of this module.
enum HNR_STYLE |
Writing style of HNR.
This setting specifies the writing style of the characters for the HNR handprinted numerals recognition module.
RECERR RECAPIKRN kRecGetHnrParams | ( | int | sid, |
LPHNR_BOXDATA | pCharbox, | ||
INTBOOL * | pbSpaceincl | ||
) |
Getting HNR parameters.
The kRecGetHnrParams function inquires the current space inclusion flag and Character box parameter setting of the handprinted numeral recognition module RM_HNR.
[in] | sid | Settings Collection ID. |
[out] | pCharbox | Pointer of a structure to receive Character box parameters. |
[out] | pbSpaceincl | Pointer of a variable to store the space inclusion flag. When the space inclusion flag is TRUE, the recognition module calculates and may return SPACE characters between the recognized numeral characters. |
RECERR |
RECERR kRecGetHnrParams(int sid, out HNR_BOXDATA pCharbox, out bool bSpaceincl);
Getting writing style of HNR.
The kRecGetHnrStyle function inquires the writing style setting of the handprinted numeral recognition module (FM_HANDPRINT).
[in] | sid | Settings Collection ID. |
[out] | pdb | Pointer of a variable to store the writing style setting. |
RECERR |
RECERR kRecGetHnrStyle(int sid, out HNR_STYLE pdb);
RECERR RECAPIKRN kRecSetHnrParams | ( | int | sid, |
LPCHNR_BOXDATA | pCharbox, | ||
INTBOOL | bSpaceincl | ||
) |
Setting HNR parameters.
The kRecSetHnrParams function sets character box parameters and the space inclusion flag for the handprinted numerals recognition module FM_HANDPRINT.
[in] | sid | Settings Collection ID. |
[in] | pCharbox | Pointer of a Character box parameter structure. It can be NULL. |
[in] | bSpaceincl | Space inclusion flag. This flag controls whether or not the handprinted numeral recognition module should export spaces detected between characters. |
RECERR |
RECERR kRecSetHnrParams(int sid, HNR_BOXDATA pCharbox, bool bSpaceincl);
Setting writing style of HNR.
The kRecSetHnrStyle function sets the writing style setting for the handprinted numerals recognition module (FM_HANDPRINT).
[in] | sid | Settings Collection ID. |
[in] | db | Writing style to be set. |
RECERR |
RECERR kRecSetHnrStyle(int sid, HNR_STYLE db);