https://github.com/selendra/zeetomic-ocr
Zeetomic Object Character Recognition (ZOCR)
https://github.com/selendra/zeetomic-ocr
docker-compose koajs ocr pm2
Last synced: 2 months ago
JSON representation
Zeetomic Object Character Recognition (ZOCR)
- Host: GitHub
- URL: https://github.com/selendra/zeetomic-ocr
- Owner: selendra
- Created: 2019-10-17T08:38:46.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T05:53:24.000Z (over 3 years ago)
- Last Synced: 2025-12-25T23:39:40.448Z (6 months ago)
- Topics: docker-compose, koajs, ocr, pm2
- Language: JavaScript
- Homepage: https://www.zeetomic.com
- Size: 9.02 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### ZEETOMIC OCR
Zeetomic Object Character Recognition (ZOCR) is a API server run on koajs and OCR at background.
ZOCR pack as container wich is ready for deployment.
### How to use API
Download or clone the source code from this reposity and make sure the local machine install docker.
Go to directory and start the docker compose
`$docker-compose up`
when the terminal occure
`OCR Server started at 9002`
The the ZOCR Start successfully
`curl --request POST \
--url http://localhost:9002/pushimage \
--header 'content-type: application/json' \
--data '{"imguri":"https://i.ibb.co/r69pMmx/ocr.png",
"amount":"Grand Total($)",
"trxdate":"Bill Date"}' `
Expected result should display like below
`{
"data": {
"idx": 11,
"trxdate": "Bill Date: 15/08/19 03:52 pm",
"amount": "Grand Total($) 7.70"
}
}`