【问题标题】:How to set parameters in tesseract in Objective C如何在Objective C中的tesseract中设置参数
【发布时间】:2025-12-20 12:05:11
【问题描述】:

我想在我的 iOS 项目的“Objective C”中为中文在 tesseract 中设置控制参数。有谁能够帮我?

【问题讨论】:

标签: ios objective-c ios7 swift tesseract


【解决方案1】:

使用this version of Tesseract compiled for iOS

Tesseract *tesseract = [[Tesseract alloc] initWithLanguage:@"chi_sim"]; //simplified chinese

其他文档可以在上面链接的 github 项目的自述文件中找到。

【讨论】: