Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have compiled tesseract for using it in xcode following: http://iphone.olipion.com/cross-compilation/tesseract-ocr

I obtain the .a file, import it as framework in the iphone project, and update the header search path for tesseract header files.

So now I need a simple example in order to get start. I can't find anything in http :// code.google.com/p/tesseract-ocr/ or by googling.

Anyone can help me give me a starting point (a code snippet)..?! Many ThankS!

-- Later i found this code:

#include "baseapi.h"


TessBaseAPI::InitWithLanguage(NULL, NULL, language, NULL, false, 0, NULL); char* text = TessBaseAPI::TesseractRect(imagedata, bytes_per_pixel, bytes_per_line, 0, 0, width, height); TessBaseAPI::End();


but when I try to compile for device (only inserting include statement without the code above) i get the following:

error:syntax error before 'PAGE_RES' warning:type defaults to 'int' in declaration of 'PAGE_RES' warning:data definition has no type or storage class

and so on with BLOCK_LIST, IMAGE etc.


if compile for simulator i get

error: expected '=',',',','asm' or 'attribute' before 'PAGE_RES' and so on with BLOCK_LIST, IMAGE and TessBaseAPI

--- Other Update: I found solution for include problem: Where the include occurs must be rename the file.m in .mm extension because we have to tell xcode that we have to use objective-c and c++ together.

share|improve this question
Hi you said that you cross compiled tesseract using that blog. I just want to know what is meant by source the configure file ? – ByteSlick Jun 20 '10 at 8:56
Do you know how to manage the language file. i.e. where to keep the .traindata files? And only .traindata file enough? or do we need all the other 7/8 files? – karim Apr 6 '11 at 10:25

4 Answers

you'll need to update SDKROOT, CPPFLAGS and CXX variables. For example, here's the relevant part of my build script, modified to work with 4.0: export SDKROOT=$DEVROOT/SDKs/iPhoneOS4.0.sdk export PATH=$DEVROOT/usr/bin:$PATH

Set up relevant environment variables

export CPPFLAGS="-I$SDKROOT/usr/lib/gcc/arm-apple-darwin10/4.0.1/ include/ -I$SDKROOT/usr/include/ -miphoneos-version-min=4.0" export CFLAGS="$CPPFLAGS -arch armv6 -pipe -no-cpp-precomp -isysroot $SDKROOT" export CPP="$DEVROOT/usr/bin/cpp $CPPFLAGS" export CXXFLAGS="$CFLAGS"

Dynamic library location generated by the Unix package

LIBPATH=$LIBFILE.dylib LIBNAME=basename $LIBPATH

export LDFLAGS="-L$SDKROOT/usr/lib/ -Wl,- dylib_install_name,@executable_path/$LIBNAME"

Static library that will be generated for ARM

LIBPATH_static=$LIBFILE.a LIBNAME_static=basename $LIBPATH_static

TODO: add custom flags as necessary for package

./configure CXX=$DEVROOT/usr/bin/arm-apple-darwin10-g++-4.0.1 CC= $DEVROOT/usr/bin/arm-apple-darwin10-gcc-4.0.1 LD=$DEVROOT/usr/bin/ld --host=arm-apple-darwin

share|improve this answer
1  
I have not been able to find anywhere in apple's docs about the env. vars. , such as ; -miphoneos-version-min=4.0 . Also the custom flag;-host=arm-apple-darwin . Where is this stuff documented ? – RyBolt Jul 28 '11 at 14:22

this is a link contains a precompiled version ready to be used for iPhone: http://tinsuke.wordpress.com/2011/11/01/how-to-compile-and-use-tesseract-3-01-on-ios-sdk-5/

share|improve this answer

Use this script (includes How to at the top) https://gist.github.com/1111046

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.