首先,我想确认我理解选择迭代器是正确的。
例如,如果我在图像“范围”上有一个词,
选择迭代器必须给我类似“s”的东西,也许在 Next() 之后,“5”。
对于 3. 字母“o”,它可能给我“0”,在 Next()“O”之后和 Next()“o”之后。
我理解对吗?
这是我所有的相关代码,
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();
tesseract::ChoiceIterator *choiceItr;
const tesseract::ResultIterator itr = *ri;
choiceItr = new tesseract::ChoiceIterator(itr);
const char * out=choiceItr->GetUTF8Text();
char * out2=(*ri).GetUTF8Text(tesseract::RIL_SYMBOL);
printf("out:%s,out2:%s",out,out2);
控制台上的输出是:
出:(空),出2:P
p 是预期结果迭代器结果,但选择迭代器输出为空。
感谢您的想法。
大致解决:
// This ensures Tesseract's "blob_choices" structures are filled
SetVariable("save_best_choices", "T");