php-deepface icon indicating copy to clipboard operation
php-deepface copied to clipboard

A PHP adapter for the python deepface framework.

Results 11 php-deepface issues
Sort by recently updated
recently updated
newest added

Thanks for this adapter, I have been trying to give it a go in my project however after setting up the Python environment that is required it gives me an...

Script currently doesn't work without these attributes defined.

Last pull request (#14) introduced a serious problem when running any script in a single line (python won't run a script with a try-except block in a single line because...

hello, i have tried doing everything as is in the readme, pip install deepface composer require astrotomic/php-deepface however, when i do basic $deepface = new \Astrotomic\DeepFace\DeepFace(); $deepface->extractFaces( img_path: storage_path('test.jpg'), );...

I'm running this package on an Apache server, but every time I run any of the scripts, it gives me a Syntax Error at the try-except block. It seems that...

This package started as a fun project but seems to be used by people. So we should add some tests to verify that it's always working with the defined versions...

As DeepFace itself is also an actively developed library we should add some documentation of which DeepFace version is compatible with which package version.

I am having a bit of a problem getting the script to run on Windows. This is the error I am getting: "'python3' is not recognized as an internal or...

This PR fixes [#23](https://github.com/Astrotomic/php-deepface/issues/23). - Issue: `Unknown named parameter $nose` when using `Detector::RETINAFACE` - Cause: RetinaFace returns landmarks (`nose`, `mouth_left`, `mouth_right`, etc.) not properly mapped. - Fix: Normalize landmark keys...

#### Description When calling `represent()` with the **RetinaFace** detector, the library crashes with the following error: ``` Unknown named parameter $nose ``` It seems that RetinaFace returns landmarks with keys...