身份证混贴识别API接口介绍 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
产品推荐: 1、安全稳定的云服务器租用,2核/2G/5M仅37元,点击抢购>>>; 2、高防物理服务器20核/16G/50M/500G防御仅350元,点击抢购>>> 3、百度智能建站(五合一网站)仅880元/年,点击抢购>>> 模板建站(PC+手机站)仅480元/年,点击抢购>>> 4、阿里云服务器2核2G3M仅99元/年、2核4G5M仅199元/年,新老同享,点击抢购>>> 5、腾讯云服务器2核2G4M仅99元/年、新老同享,点击抢购>>> 身份证混贴识别API接口介绍 身份证混贴识别支持自动检测与识别身份证正反面在同一张图片上的场景,一次识别图片中身份证正反面所有字段。 接口描述身份证混贴识别支持自动检测与识别身份证正反面在同一张图片上的场景,一次识别图片中身份证正反面所有字段。 支持对二代居民身份证正反面所有8个字段进行结构化识别,包括姓名、性别、民族、出生日期、住址、身份证号、签发机关、有效期限,识别准确率超过99%;同时支持身份证正面头像检测,并返回头像切片的base64编码及位置信息。 同时,支持对用户上传的身份证图片进行图像风险和质量检测,可识别图片是否为复印件或临时身份证,是否被翻拍或编辑,是否存在正反颠倒、模糊、欠曝、过曝等质量问题。
在线调试您可以在 示例代码中心 中调试该接口,可进行签名验证、查看在线调用的请求内容和返回结果、示例代码的自动生成。 请求说明请求示例 HTTP 方法: 请求URL: URL参数:
Header如下:
Body中放置请求参数,参数详情如下: 请求参数
请求代码示例 提示一:使用示例代码前,请记得替换其中的示例Token、图片地址或Base64信息。 提示二:部分语言依赖的类或库,请在代码注释中查看下载地址。 curl -i -k 'https://aip.baidubce.com/rest/2.0/ocr/v1/multi_idcard?access_token=【调用鉴权接口获取的token】' --data 'image=【图片Base64编码,需UrlEncode】' -H 'Content-Type:application/x-www-form-urlencoded' 返回说明返回参数
返回示例 {
"words_result": [
{
"card_info": {
"card_location": {
"top": 121,
"left": 687,
"width": 501,
"height": 323
},
"risk_type": "normal",
"idcard_number_type": 1,
"edit_tool": "",
"image_status": "normal",
"card_type": "idcard_front",
"direction": 0
},
"card_result": {
"姓名": {
"words": "王媛",
"location": {
"top": 158,
"left": 788,
"width": 67,
"height": 26
}
},
"民族": {
"words": "汉",
"location": {
"top": 204,
"left": 884,
"width": 19,
"height": 21
}
},
"住址": {
"words": "北京市海淀区西北旺东路10号院",
"location": {
"top": 282,
"left": 782,
"width": 205,
"height": 51
}
},
"公民身份号码": {
"words": "410433199510104518",
"location": {
"top": 385,
"left": 863,
"width": 266,
"height": 29
}
},
"出生": {
"words": "19951010",
"location": {
"top": 240,
"left": 784,
"width": 163,
"height": 25
}
},
"性别": {
"words": "女",
"location": {
"top": 202,
"left": 789,
"width": 19,
"height": 22
}
}
}
},
{
"card_info": {
"card_location": {
"top": 526,
"left": 66,
"width": 524,
"height": 323
},
"risk_type": "normal",
"edit_tool": "",
"image_status": "normal",
"card_type": "idcard_back",
"direction": 0
},
"card_result": {
"失效日期": {
"words": "20350413",
"location": {
"top": 801,
"left": 394,
"width": 95,
"height": 19
}
},
"签发机关": {
"words": "北京市公安局海淀分局",
"location": {
"top": 760,
"left": 290,
"width": 180,
"height": 19
}
},
"签发日期": {
"words": "20150413",
"location": {
"top": 801,
"left": 289,
"width": 89,
"height": 19
}
}
}
}
],
"direction": 0,
"log_id": 1397109704106180608} |