ImageGear Professional v18.2 > API Reference Guide > Recognition Component API Reference > Recognition Component Functions Reference > Utility Functions > IG_REC_modules_info_get |
Obtains information about the available modules of recognition engine.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_REC_modules_info_get( LPAT_REC_MODULE_INFO* ppModules, LPAT_INT pSize ); |
Name | Type | Description |
ppModules | LPAT_REC_MODULE_INFO* | Address of a pointer to the module information array. |
pSize | LPAT_INT | Address of a variable holding the number of module information structures. |
This function does not process image pixels.
Copy Code
|
|
---|---|
AT_ERRCOUNT ErrCount = 0;
LPAT_REC_MODULE_INFO pModules = 0;
AT_INT nModulesCount = 0;
ErrCount = IG_REC_modules_info_get(&pModules, &nModulesCount);
//...
ErrCount += IG_REC_free(pModules);
|
The integrating application may not require all the modules of the recognition engine, so any superfluous files can be simply deleted from the Binary directory.