本文介绍了如何使用Java SDK获取人脸信息。
功能描述
根据个体ID和人脸ID查询当前个体的人脸ID以及人脸图片路径等信息。关于查询人脸的具体参数说明,请参见查询人脸图片API文档。
您需要使用内容安全的API接入地址,调用本SDK接口。关于API接入地址的信息,请参见接入地址(Endpoint)。
前提条件
- 安装Java依赖。关于安装Java依赖的具体操作,请参见安装Java依赖。
说明 请一定按照安装Java依赖页面中的版本安装,否则会导致调用失败。
- 如果使用本地文件或者二进制文件检测,请下载并在项目工程中引入Extension.Uploader工具类。
查询人脸信息代码示例
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.aliyuncs.DefaultAcsClient;
import com.aliyuncs.IAcsClient;
import com.aliyuncs.exceptions.ClientException;
import com.aliyuncs.exceptions.ServerException;
import com.aliyuncs.green.model.v20180509.GetFacesRequest;
import com.aliyuncs.http.FormatType;
import com.aliyuncs.http.HttpResponse;
import com.aliyuncs.profile.DefaultProfile;
import com.aliyuncs.profile.IClientProfile;
import java.util.Arrays;
public class FaceGetRequestSample {
public static void main(String[] args) throws Exception {
// 请替换成您的AccessKey ID和AccessKey Secret。
IClientProfile profile = DefaultProfile.getProfile("cn-shanghai", "yourAccessKeyId", "yourAccessKeySecret");
DefaultProfile.addEndpoint("cn-shanghai", "Green", "green.cn-shanghai.aliyuncs.com");
IAcsClient client = new DefaultAcsClient(profile);
GetFacesRequest getFacesRequest=new GetFacesRequest();
// 指定API返回格式。
getFacesRequest.setAcceptFormat(FormatType.JSON);
// 指定请求方法。
getFacesRequest.setMethod(com.aliyuncs.http.MethodType.POST);
getFacesRequest.setEncoding("utf-8");
JSONObject jsonObject=new JSONObject();
jsonObject.put("personId","personId_test_3");
jsonObject.put("faceIds", Arrays.asList("203452206484505786"));
getFacesRequest.setHttpContent(jsonObject.toJSONString().getBytes("UTF-8"), "UTF-8", FormatType.JSON);
// 请务必设置超时时间(单位ms)。
getFacesRequest.setConnectTimeout(3000);
getFacesRequest.setReadTimeout(6000);
try {
HttpResponse httpResponse = client.doAction(getFacesRequest);
if (httpResponse.isSuccess()) {
JSONObject scrResponse = JSON.parseObject(new String(httpResponse.getHttpContent(), "UTF-8"));
System.out.println(JSON.toJSONString(scrResponse, true));
if (200 == scrResponse.getInteger("code")) {
JSONObject resultObject = scrResponse.getJSONObject("data");
if (200 == resultObject.getInteger("code")) {
System.out.println(resultObject.getString("personId"));
} else {
System.out.println("task process fail:" + resultObject.getInteger("code"));
}
} else {
System.out.println("detect not success. code:" + scrResponse.getInteger("code"));
}
} else {
System.out.println("response not success. status:" + httpResponse.getStatus());
}
} catch (ServerException e) {
e.printStackTrace();
} catch (ClientException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
}
}