├── .gitignore ├── README.md ├── Tensorflow - Verification.ipynb ├── app.py ├── in └── id-card.jpg ├── model ├── dsnt.py └── frozen_model.pb ├── ngrok ├── requirements.txt ├── results.png ├── static ├── dl.svg ├── script.js ├── selfie.svg └── style.css ├── templates └── index.html └── tmp ├── jupyter-cropped-warped.jpg ├── jupyter-final.jpg └── jupyter-results.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcontrol/KYC-tensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcontrol/KYC-tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /Tensorflow - Verification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcontrol/KYC-tensorflow/HEAD/Tensorflow - Verification.ipynb -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcontrol/KYC-tensorflow/HEAD/app.py -------------------------------------------------------------------------------- /in/id-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcontrol/KYC-tensorflow/HEAD/in/id-card.jpg -------------------------------------------------------------------------------- /model/dsnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcontrol/KYC-tensorflow/HEAD/model/dsnt.py -------------------------------------------------------------------------------- /model/frozen_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcontrol/KYC-tensorflow/HEAD/model/frozen_model.pb -------------------------------------------------------------------------------- /ngrok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcontrol/KYC-tensorflow/HEAD/ngrok -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcontrol/KYC-tensorflow/HEAD/requirements.txt -------------------------------------------------------------------------------- /results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcontrol/KYC-tensorflow/HEAD/results.png -------------------------------------------------------------------------------- /static/dl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcontrol/KYC-tensorflow/HEAD/static/dl.svg -------------------------------------------------------------------------------- /static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcontrol/KYC-tensorflow/HEAD/static/script.js -------------------------------------------------------------------------------- /static/selfie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcontrol/KYC-tensorflow/HEAD/static/selfie.svg -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcontrol/KYC-tensorflow/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcontrol/KYC-tensorflow/HEAD/templates/index.html -------------------------------------------------------------------------------- /tmp/jupyter-cropped-warped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcontrol/KYC-tensorflow/HEAD/tmp/jupyter-cropped-warped.jpg -------------------------------------------------------------------------------- /tmp/jupyter-final.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcontrol/KYC-tensorflow/HEAD/tmp/jupyter-final.jpg -------------------------------------------------------------------------------- /tmp/jupyter-results.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcontrol/KYC-tensorflow/HEAD/tmp/jupyter-results.jpg --------------------------------------------------------------------------------