├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── examples └── picam2facerec.py ├── facerec_service.py └── faces └── .gitkeep /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanLoebel/face_recognition/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanLoebel/face_recognition/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanLoebel/face_recognition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanLoebel/face_recognition/HEAD/README.md -------------------------------------------------------------------------------- /examples/picam2facerec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanLoebel/face_recognition/HEAD/examples/picam2facerec.py -------------------------------------------------------------------------------- /facerec_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanLoebel/face_recognition/HEAD/facerec_service.py -------------------------------------------------------------------------------- /faces/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------