SimpleOCR:SDK Functions – DelImage
void DelImage(SETOFIMG * set, int index)
Deletes and frees an image in a set.
Return Value
None
Parameters
set
A pointer to a set of images of type SETOFIMG.
index
Position of the deleted image, counted from 0.
Example
SETOFIMG *doc;
IMG *img;
int nb;
// Creates a set
...
// Delete the third image
DelImage(set,2,img);