Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 478 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 478 Bytes

OCR Service

This is a stand alone character recognition microservice that can be accessed via a REST API.

The service's expects json in the following format:

{
    'image': '<image byte content>'
}

Data will be returned in the following format:

{
    "text": [
        "Line of text one",
        "Line of text two"
    ]
}

Running the container

This application is fully Dockerized and can be started with docker-compose.

docker-compose up