Using Google Docs API for OCR in android

I am trying to develop an Android application that uses OCR. The application should be able to scan business cards and other documents in order to pull content.

Is it possible to implement this using Google Docs Api? How to do it?

+6
source share
4 answers

The Google Docs API list allows you to download PDF files or images and automatically run OCR to extract their text.

+3
source

You can use Tesseract . It is a powerful library, and it has a java Tess4j shell.

+1
source

You can use the Google Cloud Vision API . Its free for 1-1000 units per month. you can check the price here

+1
source

you may find OpenCV useful. This is a powerful native wrapper library for Android.

0
source

Source: https://habr.com/ru/post/916429/


All Articles