Metadata-Version: 2.1
Name: receiptrecognizer
Version: 0.0.5
Summary: Receipt Recognition Package
Home-page: https://github.com/kemalaraz/Receipt_Recognizer
Author: karaz
Author-email: kemalaraz91@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: <3.8
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: natsort
Requires-Dist: imutils
Requires-Dist: shapely
Requires-Dist: requests
Requires-Dist: pytesseract
Requires-Dist: scikit-image
Requires-Dist: torch (==1.5.1)
Requires-Dist: torchvision
Requires-Dist: opencv-python
Requires-Dist: googledrivedownloader (==0.4)

# Receipt_Recognizer
A library for detecting restaurant name, date and overall bill from a given receipt.

## For OCR Tesseract to work
### On Linux
sudo apt-get update
sudo apt-get install libleptonica-dev
sudo apt-get install tesseract-ocr tesseract-ocr-dev
sudo apt-get install libtesseract-dev
### On Mac
brew install tesseract
### On Windows
download binary from https://github.com/UB-Mannheim/tesseract/wiki. then add pytesseract.pytesseract.tesseract_cmd = 'C:\Program Files (x86)\Tesseract-OCR\tesseract.exe' to your script.

