Returns information about the accuracy and timing data of the last processed image.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_REC_statistics_get( LPAT_REC_STATISTICS pStat ); |
Name | Type | Description |
---|---|---|
pStat | LPAT_REC_STATISTICS | Address of a structure to hold the statistical information. |
This function does not process image pixels.
Copy Code
|
|
---|---|
AT_ERRCOUNT ErrCount = 0; AT_REC_STATISTICS rStatistics; HIGEAR higImage = 0; HIG_REC_IMAGE higRecImage = 0; memset(&rStatistics, 0, sizeof(AT_REC_STATISTICS)); ErrCount += IG_load_file("Image.tif", &higImage); ErrCount += IG_REC_image_import(higImage, &higRecImage); ErrCount += IG_REC_zones_locate(higRecImage, NULL); ErrCount += IG_REC_image_recognize(higRecImage); //... ErrCount += IG_REC_statistics_get(&rStatistics); //... ErrCount += IG_REC_image_delete(higRecImage); ErrCount += IG_image_delete(higImage); |