├── .gitignore ├── LICENSE ├── README.md ├── face detect and track └── demo - detect and track.py ├── face detect └── demo - detect.py └── track multiple faces └── demo - track multiple faces.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdiepen/face-recognition/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdiepen/face-recognition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdiepen/face-recognition/HEAD/README.md -------------------------------------------------------------------------------- /face detect and track/demo - detect and track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdiepen/face-recognition/HEAD/face detect and track/demo - detect and track.py -------------------------------------------------------------------------------- /face detect/demo - detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdiepen/face-recognition/HEAD/face detect/demo - detect.py -------------------------------------------------------------------------------- /track multiple faces/demo - track multiple faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdiepen/face-recognition/HEAD/track multiple faces/demo - track multiple faces.py --------------------------------------------------------------------------------