What do you mean by image recognition? Do you need to look for specific shapes on the image? Then google for OpenCV. If you need to extract text from the image, you have several options:
1. Open source. As far as i know there are no native opensource Java OCR SDKs. There are Java APIs which wrap calls for native interfaces, for example, for one of the most popular opensource OCR engines - Tesseract (http://groups.google.com/group/tesseract-ocr/) - there are some Java wrappers like tesjeract (http://code.google.com/p/ tesjeract/) or Tess4J (http://tess4j.sf.net/). That could work for you, but it's rather hard to set up and will require developing image- preprocessing and font training on your side. 2. One more solution could be a cloud service. It requires end-user application to have the internet connection, but it's independent from your programming language choice and resources limitations. Have a look at http://ocrsdk.com, it's a cloud-based OCR SDK that let you upload an image through web API and returns you the OCRed data. This Web API based OCR SDK has a free 90 days trial without any upfront charges. Its pricing is really affordable in comparison with enterprise solutions while it provides enterprise-level OCR accuracy which is way better than open source. You may also find useful this Android codesample at github: https://github.com/abbyysdk/ocrsdk.com/tree/master/Android (you need to get API key at http://ocrsdk.com to use it). Hope it helps! On Mar 12, 5:59 pm, hongjuan zhang <[email protected]> wrote: > Can someone recommend several image recognition Android applications to me ? > > Hello everyone > > I need to find some image recognition Android applications .But it’s > not easy to know which Android application belongs to such kind. Could > anyone please recommend some such kind of applications to me .I appreciate > it very much! > > Thanks a lot! > > *Hongjuan Zhang,* > > Chinese Academy of Sciences -- You received this message because you are subscribed to the Google Groups "Android Developers" 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/android-developers?hl=en

