tleyden / open-ocr

Run your own OCR-as-a-Service using Tesseract and Docker
Apache License 2.0
1.33k stars 223 forks source link

Android #21

Closed Juandkpa closed 9 years ago

Juandkpa commented 9 years ago

How can I write a android client to consume open-ocr service that is Launching in Google compute engine?

tleyden commented 9 years ago

There is no java client library, so you will need to use something like OkHttp to access the REST API.

The REST API is documented here.

Also you could look at the Go REST Client for an example.

Juandkpa commented 9 years ago

Thank you!