├── .gitignore ├── LICENSE ├── README.md ├── cardscan ├── __init__.py ├── core.py ├── findCard.py ├── process.py └── utils.py └── server ├── __init__.py ├── app.py ├── requirements.txt ├── static ├── js │ ├── .show.js.swo │ ├── jquery-2.1.4.js │ └── show.js ├── skeleton.css └── style.css └── templates ├── base.html ├── index.html ├── show.html └── upload.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agundy/BusinessCardReader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agundy/BusinessCardReader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agundy/BusinessCardReader/HEAD/README.md -------------------------------------------------------------------------------- /cardscan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cardscan/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agundy/BusinessCardReader/HEAD/cardscan/core.py -------------------------------------------------------------------------------- /cardscan/findCard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agundy/BusinessCardReader/HEAD/cardscan/findCard.py -------------------------------------------------------------------------------- /cardscan/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agundy/BusinessCardReader/HEAD/cardscan/process.py -------------------------------------------------------------------------------- /cardscan/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agundy/BusinessCardReader/HEAD/cardscan/utils.py -------------------------------------------------------------------------------- /server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agundy/BusinessCardReader/HEAD/server/app.py -------------------------------------------------------------------------------- /server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agundy/BusinessCardReader/HEAD/server/requirements.txt -------------------------------------------------------------------------------- /server/static/js/.show.js.swo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agundy/BusinessCardReader/HEAD/server/static/js/.show.js.swo -------------------------------------------------------------------------------- /server/static/js/jquery-2.1.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agundy/BusinessCardReader/HEAD/server/static/js/jquery-2.1.4.js -------------------------------------------------------------------------------- /server/static/js/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agundy/BusinessCardReader/HEAD/server/static/js/show.js -------------------------------------------------------------------------------- /server/static/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agundy/BusinessCardReader/HEAD/server/static/skeleton.css -------------------------------------------------------------------------------- /server/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agundy/BusinessCardReader/HEAD/server/static/style.css -------------------------------------------------------------------------------- /server/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agundy/BusinessCardReader/HEAD/server/templates/base.html -------------------------------------------------------------------------------- /server/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agundy/BusinessCardReader/HEAD/server/templates/index.html -------------------------------------------------------------------------------- /server/templates/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agundy/BusinessCardReader/HEAD/server/templates/show.html -------------------------------------------------------------------------------- /server/templates/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agundy/BusinessCardReader/HEAD/server/templates/upload.html --------------------------------------------------------------------------------