https://github.com/alexzaitsev/ocr-google-vision
Sample project demonstrating how OCR can be implemented using Google Vision library
https://github.com/alexzaitsev/ocr-google-vision
android google-vision-api ocr ocr-android
Last synced: 12 months ago
JSON representation
Sample project demonstrating how OCR can be implemented using Google Vision library
- Host: GitHub
- URL: https://github.com/alexzaitsev/ocr-google-vision
- Owner: alexzaitsev
- Created: 2017-12-22T08:53:02.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-22T09:27:01.000Z (about 8 years ago)
- Last Synced: 2025-02-28T12:55:48.568Z (about 1 year ago)
- Topics: android, google-vision-api, ocr, ocr-android
- Language: Java
- Homepage: http://alex-zaitsev.com
- Size: 1.09 MB
- Stars: 16
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Overview
This is a sample project demonstrating how OCR (optical character recognition) can be implemented using Google Vision library.
Apk file is available [here](https://github.com/alexzaitsev/ocr-google-vision/releases).
*Benefits:*
* requires no internet connection
* very fast
* out-of-the-box solution
* super-easy to implement and requires less than 1h
*Drawbacks:*
* understands English and digits only
Screenshot of the program:

As you may see it recognizes written text easily.
## Which digits it can recognize
So it recognizes without any problem the next numbers:



And the next ones it cannot recognize:



## Credits
Thanks to the author of [this](https://www.youtube.com/watch?v=xoTKpstv9f0) Youtube video lesson.