├── .gitignore ├── Exception └── NoFaceException.php ├── FaceDetector.php ├── LICENSE.txt ├── README.md ├── composer.json ├── detection.dat ├── index.php └── lena512color.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.phar 3 | -------------------------------------------------------------------------------- /Exception/NoFaceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricesvay/php-facedetection/HEAD/Exception/NoFaceException.php -------------------------------------------------------------------------------- /FaceDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricesvay/php-facedetection/HEAD/FaceDetector.php -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricesvay/php-facedetection/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricesvay/php-facedetection/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricesvay/php-facedetection/HEAD/composer.json -------------------------------------------------------------------------------- /detection.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricesvay/php-facedetection/HEAD/detection.dat -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricesvay/php-facedetection/HEAD/index.php -------------------------------------------------------------------------------- /lena512color.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricesvay/php-facedetection/HEAD/lena512color.jpg --------------------------------------------------------------------------------