Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tiagordc/yolo-detection-api

Generic image detection API with OCR for tiagorcdocker/yolo-detection-api
https://github.com/tiagordc/yolo-detection-api

azure-cosmos-db azure-storage computer-vision docker ocr tensorflow tesseract-ocr yolov3

Last synced: 12 days ago
JSON representation

Generic image detection API with OCR for tiagorcdocker/yolo-detection-api

Awesome Lists containing this project

README

        

# yolo-detection-api

Object detection API with OCR (optional) based in a given trained model

Also using Azure optionally to:
* Store the tensorflow model
* Store images and predictions
* API key authorization

## Setup (Windows)

```console
py -3.7 -m venv env
env\scripts\activate
py -m pip install --upgrade pip
pip install -r requirements.txt
```
## References

* https://www.youtube.com/watch?v=_UqmgHKdntU
* https://github.com/theAIGuysCode/Object-Detection-API

## Docker cheat sheet

Build:
* docker build -t yolo-detection-api .

Run:
* docker run -d -p 80:5000 --env-file ./.env yolo-detection-api

Push:
* https://ropenscilabs.github.io/r-docker-tutorial/04-Dockerhub.html