├── .gitignore ├── README.md ├── logo └── ocr.png ├── openfaas-ocr ├── Dockerfile ├── function │ ├── __init__.py │ └── handler.py ├── index.py ├── requirements.txt └── sample1.jpg ├── screens ├── openfaas-ocr.png └── tesseract_header.jpg └── stack.yml /.gitignore: -------------------------------------------------------------------------------- 1 | template 2 | build 3 | __pycache__ 4 | *.pyc 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viveksyngh/openfaas-ocr/HEAD/README.md -------------------------------------------------------------------------------- /logo/ocr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viveksyngh/openfaas-ocr/HEAD/logo/ocr.png -------------------------------------------------------------------------------- /openfaas-ocr/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viveksyngh/openfaas-ocr/HEAD/openfaas-ocr/Dockerfile -------------------------------------------------------------------------------- /openfaas-ocr/function/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openfaas-ocr/function/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viveksyngh/openfaas-ocr/HEAD/openfaas-ocr/function/handler.py -------------------------------------------------------------------------------- /openfaas-ocr/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viveksyngh/openfaas-ocr/HEAD/openfaas-ocr/index.py -------------------------------------------------------------------------------- /openfaas-ocr/requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow 2 | pytesseract 3 | -------------------------------------------------------------------------------- /openfaas-ocr/sample1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viveksyngh/openfaas-ocr/HEAD/openfaas-ocr/sample1.jpg -------------------------------------------------------------------------------- /screens/openfaas-ocr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viveksyngh/openfaas-ocr/HEAD/screens/openfaas-ocr.png -------------------------------------------------------------------------------- /screens/tesseract_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viveksyngh/openfaas-ocr/HEAD/screens/tesseract_header.jpg -------------------------------------------------------------------------------- /stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viveksyngh/openfaas-ocr/HEAD/stack.yml --------------------------------------------------------------------------------