Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gsingh93/url-recognizer
MHacks 2013 hack: An Android app that recognizes URLs from images using an OCR and goes to those URLs.
https://github.com/gsingh93/url-recognizer
Last synced: 8 days ago
JSON representation
MHacks 2013 hack: An Android app that recognizes URLs from images using an OCR and goes to those URLs.
- Host: GitHub
- URL: https://github.com/gsingh93/url-recognizer
- Owner: gsingh93
- Created: 2013-09-21T00:53:06.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-22T04:21:54.000Z (about 11 years ago)
- Last Synced: 2024-05-02T01:29:41.354Z (7 months ago)
- Language: Java
- Size: 9.51 MB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
URL Recognizer
==============An MHacks 2013 hack by Gulshan Singh and Aaron Dimet.
This Android app allows you to take a picture with your phone and go to any URL in the image.
Building
--------To build, clone the project, and run `git submodule update --init --recursive` in the root directory of the project. This will clone the [tess-two](https://github.com/rmtheis/tess-two) library into `contrib/tess`. This is an Android port of the open source OCR [Tesseract](http://code.google.com/p/tesseract-ocr/). To build this library, cd into `contrib/tess/tess-two` and run the following commands,
```
ndk-build
android update project --path .
ant release
```Note that means that the Android SDK tools and the Android NDK tools must be in your path and you must have Apache Ant installed.
Then import the project as a library into eclipse. Right click on your project, select Properties -> Android, click Add and select the tess-two project. The application should then build without errors.