三像比对
接口描述
该接口用于第三方系统上传三张照片(活体照片、身份证照片、联网核查照),平台进行身份证照片和活体照片的比对、身份证照片和联网核查照的比对。
请求说明
HTTP 方法:
POST
请求 URL:
/ai-cloud-cweis/face/compareEx
Header如下:
参数名称 | 值 |
Content-Type | application/json;charset=UTF-8 |
Body中放置请求参数,参数详情如下:
请求参数:
参数名称 | 数据类型 | 必填 | 参数描述 |
appKey | String | Y | 应用生成的appkey |
sign | String | Y | 签名 |
nonceStr | String | Y | 随机字符串 |
sceneImg | String(1,4000) | Y | Base64编码的现场活体照片 |
idCardImg | String(1,4000) | Y | Base64编码的身份证人脸照片 |
waterLineImg | String(1,4000) | Y | Base64编码的联网核查照片 |
busFlowId | String(1,4000) | N | 业务流水号,业务系统唯一序列号(对账用,建议传入) |
返回说明
返回参数:
返回值名称 | 类型 | 描述 |
---|---|---|
code | int | 返回码,0成功,非0失败 |
message | String(1,128) | 返回码描述 |
data | object | 返回的数据 |
idwscore | float | 相似度(0-1), 身份证人像与联网核查照比对相似度。 |
idiscore | float | 相似度(0-1), 身份证人脸与现场活体照片比对相似度。 |
score | float | 整体相似度(0-1), 使用idwscore和idiscore的平均值不建议使用该分数做业务 |
flowId | bigint | 交易流水ID(建议保存) |
返回示例:
{
"code": 0,
"message": "请求成功",
"data": {
"idwscore": 0.99,
"idiscore": 0.99,
"score": 0.99
}
}
`