4 Star 8 Fork 2

樊智慧/faceHttpd

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
handler.h 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
樊智慧 提交于 2019-09-19 16:16 +08:00 . handler.cpp
#ifndef __FHTTPD_HANDLER_H__
#define __FHTTPD_HANDLER_H__
#include <memory>
#include <string>
#include "return_object_if.h"
using namespace std;
//获取人脸属性
shared_ptr<BaseObjectIf> handlerGetFaceAttr(const string& body);
//获取人脸质量
shared_ptr<BaseObjectIf> handlerGetFaceQuality(const string& body);
//获取人脸特征
shared_ptr<BaseObjectIf> handlerGetFaceFeature(const string& body);
//匹配两张人脸,返回得分
shared_ptr<BaseObjectIf> handlerMatchFaceByImg(const string& body);
//注册人脸
shared_ptr<BaseObjectIf> handlerRegisterFace(const string& body);
//搜索人脸
shared_ptr<BaseObjectIf> handlerSearchFace(const string& body);
//搜索人脸
shared_ptr<BaseObjectIf> handlerMultSearchFace(const string& body);
//删除人脸
shared_ptr<BaseObjectIf> handlerRemoveFace(const string& body);
//清除所有人脸
shared_ptr<BaseObjectIf> handlerClearFaces(const string& body);
//处理没有路由的请求
shared_ptr<BaseObjectIf> handlerNoHandler(const string& body);
//识别图片中的人脸
shared_ptr<BaseObjectIf> handlerTrackFaces(const string& body);
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/wisefan/faceHttpd.git
git@gitee.com:wisefan/faceHttpd.git
wisefan
faceHttpd
faceHttpd
20190718

搜索帮助