I setup Tesseract by adding the tessdata by reference, then adding the tesseract-ios and tesseract-ios-lib as groups.
This is the guide I followed. Guide<http://lois.di-qual.net/blog/install-and-use-tesseract-on-ios-with-tesseract-ios/> I imported #import "Tesseract.h" in my ViewController.m file and I can successfully use Tesseract but can't use the methods defined in baseapi.h Tesseract.mm imports baseapi.h as a side note. Tesseract *tesseract = [[Tesseract alloc]init]; [tesseract setImage:[UIImage imageNamed:@"card.jpg"]];[tesseract recognize];char *utf8Text=tesseract->GetHOCRText(0); I am getting the error of "Tesseract" does not have a member named "GetHOCRText" How can I use the methods defined in baseapi.h while developing on iOS? -- -- You received this message because you are subscribed to the Google Groups "tesseract-ocr" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/tesseract-ocr?hl=en --- You received this message because you are subscribed to the Google Groups "tesseract-ocr" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

