I am trying to develop a Android OCR app (for home use).
I had the idea to use the Asprise OCR in the app but instead of the windows version I was gonna use the Linux version.
The problem is, I don't know how to handle the native libraries. They have the extension .SH
I'm developing in Eclipse.
Google recently released an OCR API, so you probably want to use that:
https://developers.google.com/vision/text-overview
Just add the following line to your dependecies:
compile 'com.google.android.gms:play-services-vision:9.2.0'
I would recommend you to use Android Studio instead of Eclipse and related to the OCR library, you could use Tesseract, which is an open source library developed by Google.
Here you have more information and a practical example to follow:
https://solidgeargroup.com/ocr-on-android
That reference may help you:
http://gaut.am/making-an-ocr-android-app-using-tesseract/
Hope this helps
Update 13/04/17: Removed the broken link, will put it back if it goes up again.
Related
Background
I am trying to develop an Android App for coding,for which I want to parse gradle files and download the repositories which users needs.However,I install my app only to see an error which implies Android has got rid of Apache Http.But in Aether,the package is needed.
What I have done
1.I have try to use HttpLegacy.jar to use the deprecated api.But what is necessary for Aether.transport-http is removed ,which I mean is not in Android API or Legacy.jar.
2.Well,there maybe other resolutions such as create an Apache Http compact package by myself.If it wouldn't take too much time,I think,I would do this.
Please help me out.
Thank you for taking time to give me a hand.
As the title says im attempting to build TensorFlow Lite for Java Desktop without Android. There doesn't seem to be any official guide or build on the Tensorflow Github / Website. Does anyone know of an existing 3rd party maven/gradle link that achieves this, or a concrete way to build Tensorflow for Java desktop without Android.
I've tried the following link but when I preform the steps, I get various Bazel build errors.
https://gist.github.com/JnCrMx/144f3169bde1da6856815b3419122ab0
I have written a library for Object Detection in Java. You can have a look if you want: JavaTF
If you want you can just follow the instructions I provided on the Readme file, and test the functionality. Currently it does not support TFLite, but the saved_model format is quite good too. You can have a look how things are done, I think for a TFLite model it is not much different.
Let me know if it helps :)
I am developing an app in Android Studio which needs to consume WSDL services written in .net.
Now i need to generate java classes from WSDL file using any third party plugin. I did Google whole day and found Apache Axis2 library from here. But this comes only for eclipse. I have also tried some online tool ex. easy WSDL generator but it's all features are available only for premium members.
Now my problem is how can i generate java code using Android Studio. Is there any plugin which can solve my problem. Or any other way...Please help me.
Thanks in advance
As far as I know, Android Studio is for Android development.
Use Eclipse. It works for C, C# and Java.
You don't need Apache Axis for this IMHO ...
See if this helps ...
Or this one ..
My maps project is basically developed by using java script in .net,
All the files are in .cs format. I want to convert this entire project into android project
or if there is any source code present please provide me.
I am presently using android development tool plugin for android development.
The default sample maps is not working in my eclipse.
Suggest me any other options?
How to resolve this issue?
If you are comfortable with using c# already and really only need the maps. You should look into Xamarin
I have Java code for face recognition which works fine. There is a problem however if I port the code into an Android application.
I have included the necessary jama and jmf which is required by the Java code into the Android app. The Android code compiles fine, but when I run the app it's force closed!
What might I be doing wrong here? What are the things that I need to keep in mind when I do the porting?
By the way there is no GUI for the Java code.
Porting your java code to Android will usually not work, you need to foloow the guidelines for creating an Android application.
You should start at the Android documentation for help.
http://developer.android.com/guide/topics/fundamentals.html
I'd recommend you take a look at the Android OpenCV project. In their CVCamera sample, they have a nice setup for doing real-time image processing for feature detection etc. I've previously modified it to support face detection using the OpenCV library.
If you want to use your own code instead, I suggest you strip out all the JNI/NDK interop code and substitute your own. At any rate, it's a nice starting point.