├── .gitignore ├── .idea ├── face-recognition.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── app.py ├── database.db ├── db.py ├── face.py ├── static ├── app.css ├── app.js ├── axios.js ├── immutable.js ├── jquery.js └── lodash.js ├── storage ├── trained │ └── toan_trained.jpg └── unknown │ └── toan.jpg └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | .idea 3 | -------------------------------------------------------------------------------- /.idea/face-recognition.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/.idea/face-recognition.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/app.py -------------------------------------------------------------------------------- /database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/database.db -------------------------------------------------------------------------------- /db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/db.py -------------------------------------------------------------------------------- /face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/face.py -------------------------------------------------------------------------------- /static/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/static/app.css -------------------------------------------------------------------------------- /static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/static/app.js -------------------------------------------------------------------------------- /static/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/static/axios.js -------------------------------------------------------------------------------- /static/immutable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/static/immutable.js -------------------------------------------------------------------------------- /static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/static/jquery.js -------------------------------------------------------------------------------- /static/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/static/lodash.js -------------------------------------------------------------------------------- /storage/trained/toan_trained.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/storage/trained/toan_trained.jpg -------------------------------------------------------------------------------- /storage/unknown/toan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/storage/unknown/toan.jpg -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvn/face-recognition-service/HEAD/templates/index.html --------------------------------------------------------------------------------