eduardostuart/face
最新稳定版本:v2.0.0
Composer 安装命令:
composer require eduardostuart/face
包简介
关键字:
README 文档
README
Table of contents
Installation
To get the latest version, require the project using composer:
composer require eduardostuart/face
Once installed, you need to register the Face Service provider in your config/app.php.
return [ // .... Face\FaceServiceProvider::class, ]
And add Face Facade into config/app.php.
return [ // .... 'Face' => Face\Facades\Face::class, ]
Configuration
To start using Laravel Face, you need to publish Face configuration file.
php artisan vendor:publish --provider="Face\FaceServiceProvider"
You also need to add credentials (or custom settings) for services that your application utilizes. These informations should be placed in config/face.php file.
How to use
Detect
Detect and analyzes human faces.
// ... use Face; $results = Face::detect('https://.../photo.jpg');
Albums
Create album
// ... use Face; $album = Face::createAlbum("my album name", [ "face-id-1", "face-id-2", ]); // $album->getName(); // $album->getTags(); // $album->getFaces(); // $album->toJson(); // $album->toArray();
Remove album
// ... use Face; if(Face::removeAlbum("album-id")){ echo "OK!"; }
Update album
// ... use Face; $albumUpdated = Face::updateAlbum("album-id", "new album name");
Get all albums
// ... use Face; $albums = Face::albums(); print_r($albums->toArray());
Get an album
// ... use Face; $album = Face::album("album-id"); echo $album->getName();
Add face into an album
// ... use Face; if(Face::addIntoAlbum("album-id", ["face-1-id","face-2-id"])){ echo "Added!"; }
Remove face from album
// ... use Face; if(Face::removeFaceFromAlbum("album-id", ["face-1-id","face-2-id"])){ echo "Removed!"; }
Search
Find one or more similar faces.
// ... use Face; $albumId = '1234'; $result = Face::search($albumId, 'https://.../photo.jpg'); // $result->getTotal(); // $result->getResults();
Get a Face
// ... use Face; $result = Face::getFace('face-id'); // $result->getAttributes(); // $result->getId(); // $result->getReference();
Providers
License
Face is open-sourced software licensed under the MIT license
Security
If you discover a security vulnerability within this package, please send an e-mail to Eduardo Stuart at hi@s.tuart.me. All security vulnerabilities will be promptly addressed.
eduardostuart/face 适用场景与选型建议
eduardostuart/face 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.24k 次下载、GitHub Stars 达 36, 最近一次更新时间为 2017 年 07 月 01 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「face detection」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 eduardostuart/face 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 eduardostuart/face 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 eduardostuart/face 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Shim repository for phpmd/phpmd
Language detection in PSR-15 middleware
Official PHP integration for Optidash - AI-powered image optimization and processing API. We will drastically speed-up your websites and save you money on bandwidth and storage.
Official Laravel Facade for Optidash - AI-powered image optimization and processing API. We will drastically speed-up your websites and save you money on bandwidth and storage.
An intrusion detection library based on PHPIDS
统计信息
- 总下载量: 2.24k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 37
- 点击次数: 16
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-07-01
