提交 14bcb67b authored 作者: yangqi's avatar yangqi

回调

上级 d5c050ff
......@@ -14,35 +14,35 @@ public interface FaceService {
/**
* 获得人脸库列表
*/
public List<String> getFaceDbList() throws Exception;
List<String> getFaceDbList() throws Exception;
/**
* 创建人脸库
*/
public void createFaceDb(String dbName) throws Exception;
void createFaceDb(String dbName) throws Exception;
/**
* 添加人脸样本
*/
public void addFace(String dbName, String entityId, String labels) throws Exception;
void addFace(String dbName, String entityId, String labels) throws Exception;
/**
* 修改人脸样本
*/
public void updateFace(String dbName, String entityId, String labels) throws Exception;
void updateFace(String dbName, String entityId, String labels) throws Exception;
/**
* 获得人脸样本
*/
public Map<String, Object> getFace(String dbName, String entityId) throws Exception;
Map<String, Object> getFace(String dbName, String entityId) throws Exception;
/**
* 添加人脸数据
*/
public void addFaceImage(String dbName, String entityId, String url) throws Exception;
void addFaceImage(String dbName, String entityId, String url) throws Exception;
/**
* 搜索人脸
*/
public boolean searchFace(String dbName, String url) throws Exception;
boolean searchFace(String dbName, String url) throws Exception;
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论