0

I want to set control parameters in tesseract for chinese language in "Objective C" for my iOS project. Can anybody help me?

Mayank Jain
  • 5,663
  • 7
  • 32
  • 65
  • this [link][1] is used for chinese character recognition using Tesseract OCR [1]: http://stackoverflow.com/questions/16581626/chinese-character-recognition-using-tesseract-ocr – Anbu.Karthik Oct 20 '14 at 10:05
  • http://maniacdev.com/2014/01/open-source-template-and-example-projects-for-the-tesseract-ocr-library-on-ios-7-with-xcode-5 – Anbu.Karthik Oct 20 '14 at 10:07
  • I am asking about control parameters. https://code.google.com/p/tesseract-ocr/issues/detail?id=870 –  Oct 20 '14 at 10:13

1 Answers1

0

Using this version of Tesseract compiled for iOS:

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

Additional documentation can be found in the readme of the github project linked above.

Morgan Chen
  • 1,137
  • 7
  • 18