SimpleOCR:SDK Functions – GetNbImages
int GetNbImages(const SETOFIMG * set)
Returns the number of images that a set of images contains.
Return Value
The number of images in the set
Parameters
set
A pointer to a set of images of type SETOFIMG.
Example
SETOFIMG *doc;
int nb;
// Creates a set of images
...
nb=GetNbImages(set);