I want to make business card scanner application in android.开发者_如何学运维 I have these all dependence module
1) windows xp
2) cygwin (compiler)
3) eclipse
4) android-ndk
5) android-emulator
Now , the main problem is with the help of android ndk and cygwin when I compile ocr project . It gives me error like this :
ld.exe : cannot find -ljpeg
plz help me to solve it. .I think i am very near to complete project. any help great appreciate. thanks.
Your problem is that libjpeg doesn't seem to be installed in your cygwin environment. You should either add it from the cygwin installer or compile/install from sources. You can get source code here: http://sourceforge.net/projects/libjpeg/files/libjpeg/6b/jpegsr6.zip - and compile/install it following the instructions in the install.doc file in the zip file. After that you should be able to compile your project.
精彩评论