Can not use ChoiceIterator in tesseract
First of all i want to confirm that i understand choice iterator right. For example if i have a word on an image "scope", choice iterator must give me something like "s" and maybe after Next(), "5". for 3. letter "o" it maybe gives me "0", after Next() "O" and after Next() "o". Do i understand right? Here is all my related code, api.SetImage((uchar*)img->imageData,img->width,img->height,img->depth/8,img->widthStep); api.SetRectangle(0,0,img->width, img->height); int left,top,right,bottom; left=0;top=0;right=0;bottom=0; api.Recognize(NULL); tesseract::ResultIterator *ri=api.GetIterator();