ImageGear for C and C++ on Windows v19.3 - Updated
IG_REC_image_recognition_data_delete
API Reference Guide > Recognition Component API Reference > Recognition Component Functions Reference > Recognition Functions > IG_REC_image_recognition_data_delete

Destroys the recognition data (memory object) belonging to the hImage image.

Declaration:

 
Copy Code
AT_ERRCOUNT ACCUAPI IG_REC_image_recognition_data_delete(
   HIG_REC_IMAGE hImage
);

Arguments:

Name Type Description
hImage HIG_REC_IMAGE Image handle of the image.

Return Value:

Returns the number of ImageGear errors that occurred during this function call.

Supported Raster Image Formats:

See IG_REC_image_import.

Example:

 
Copy Code
AT_ERRCOUNT ErrCount = 0;
HIG_REC_IMAGE higRecImage = 0;
HIGEAR higImage = 0;

ErrCount += IG_load_file("Image.tif", &higImage); 
ErrCount += IG_REC_image_import(higImage, &higRecImage);

//...
ErrCount += IG_REC_image_recognize(higRecImage);
ErrCount += IG_REC_image_recognition_data_delete(higRecImage);
ErrCount += IG_REC_image_recognize(higRecImage);
//...

ErrCount += IG_REC_image_delete(higRecImage);
ErrCount += IG_image_delete(higImage);

See Also

HIG_REC_IMAGE