fix facedetection

This commit is contained in:
iBNu Maksum
2024-10-30 18:05:12 +07:00
parent f08211a83a
commit 5552fb20d5
9 changed files with 789 additions and 1 deletions

View File

@ -0,0 +1,19 @@
{
"name": "mauricesvay/php-facedetection",
"description": "PHP class to detect one face in images. A pure PHP port of an existing JS code from Karthik Tharavad.",
"license": "GPL-2.0",
"homepage": "https://github.com/mauricesvay/php-facedetection",
"authors": [
{
"name": "Maurice Svay",
"homepage": "https://github.com/mauricesvay/php-facedetection/graphs/contributors"
}
],
"require": {
"php": ">=5.2.0",
"ext-gd": "*"
},
"autoload": {
"classmap": ["FaceDetector.php", "Exception/"]
}
}