Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我终于设法为 iOS 编译了一个 tesseract 库。我已经用 3.02.02 替换了 3.01,并且想知道是否有人知道如何显示 tesseract 版本(我只是想确保它真的更新了)。
TessBaseAPI有一个方法,static const char* Version()“[r] 将版本标识符作为静态字符串返回”。因此,您只需要记录它,将其放入UILabelvia eg [NSString stringWithFormat:@"%s", yourTesseractInstance->Version()],或通过任何其他方式输出即可。
TessBaseAPI
static const char* Version()
UILabel
[NSString stringWithFormat:@"%s", yourTesseractInstance->Version()]