解释:用户向服务请求识别身份证,身份证识别包括正面和背面。
Web 态说明:受宿主环境限制,Web 态暂不支持 AI 能力相关接口。在 Web 态会做 打开百度 App 对应小程序页面 的降级处理。
成都创新互联公司主要从事网站制作、成都做网站、网页设计、企业做网站、公司建网站等业务。立足成都服务新河,十载网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:028-86922220
Object object
属性名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
detect_direction |
Boolean |
否 |
是否检测图像旋转,可检验图像的旋转方向和旋转角度。 |
|
id_card_side |
String |
否 |
- |
front:身份证含照片的一面;back:身份证带国徽的一面 |
image |
String |
是 |
图片资源地址 |
|
detect_risk |
Boolean |
否 |
- |
是否开启身份证风险类型(身份证复印件、临时身份证、身份证翻拍、修改过的身份证)功能,默认不开启,即:false 。有效值:true-开启;false-不开启 |
success |
Function |
否 |
接口调用成功的回调函数 |
|
fail |
Function |
否 |
接口调用失败的回调函数 |
|
complete |
Function |
否 |
接口调用结束的回调函数(调用成功、失败都会执行) |
参数 | 类型 | 说明 |
---|---|---|
direction |
Number |
图像方向,当 detect_direction=true 时存在。-1:未定义,0:正向,1:逆时针 90 度,2:逆时针 180 度,3:逆时针 270 度 |
image_status |
String |
normal-识别正常;reversed_side-身份证正反面颠倒;non_idcard-上传的图片中不包含身份证;blurred-身份证模糊;other_type_card-其他类型证照;over_exposure-身份证关键字段反光或过曝;unknown-未知状态 |
risk_type |
String |
输入参数 detect_risk = true 时,则返回该字段识别身份证类型:normal-正常身份证;copy-复印件;temporary-临时身份证;screen-翻拍;unknown-其他未知情况 |
edit_tool |
String |
如果参数 detect_risk = true 时,则返回此字段。如果检测身份证被编辑过,该字段指定编辑软件名称,如:Adobe Photoshop CC 2014 (Macintosh),如果没有被编辑过则返回值无此参数 |
log_id |
Number |
唯一的 log id ,用于问题定位 |
words_result_num |
Number |
识别结果数,表示 words_result 的元素个数 |
words_result |
Object |
定位和识别结果 |
参数名 | 参数类型 | 说明 |
---|---|---|
住址 |
Object |
住址 |
公民身份号码 |
Object |
公民身份号码 |
出生 |
Object |
出生 |
姓名 |
Object |
姓名 |
性别 |
Object |
性别 |
民族 |
Object |
民族 |
参数名 | 参数类型 | 说明 |
---|---|---|
location |
Object |
位置信息(坐标 0 点为左上角) |
words |
String |
识别结果字符串 |
location 返回值说明
参数名 | 参数类型 | 说明 |
---|---|---|
left |
Number |
表示识别结果的定位位置的长方形左上顶点的水平坐标 |
top |
Number |
表示识别结果的定位位置的长方形左上顶点的垂直坐标 |
width |
Number |
表示识别结果的定位位置的长方形的宽度 |
height |
Number |
表示识别结果的定位位置的长方形的高度 |
跳转编辑工具
在开发者工具中打开
在 WEB IDE 中打开
扫码体验
代码示例
请使用百度APP扫码
Page({
ocrIdCard() {
swan.chooseImage({
success: res => {
let image = res.tempFilePaths[0];
// AI系列的api有宿主使用限制,只可在百度App中使用,建议使用时加一层判断防止代码报未知错误
let host = swan.getSystemInfoSync().host;
if (host === 'baiduboxapp') {
swan.ai.ocrIdCard({
detect_direction: true,
id_card_side: 'front',
// 暂不支持识别网络图片
image,
detect_risk: true,
success: res => {
console.log('ocrIdCard res', res.words_result);
},
fail: err => {
console.log('ocrIdCard err', err);
}
});
}
else {
swan.showToast({
title: '此api目前仅可在百度App上使用',
icon: 'none'
});
}
}
})
}
});
{
"log_id": $log_id,
"direction": 0,
"image_status": "normal",
"idcard_type": "normal",
"edit_tool": "Adobe Photoshop CS3 Windows",
"words_result": {
"住址": {
"location": {
"left": 267,
"top": 453,
"width": 459,
"height": 99
},
"words": "南京市江宁区弘景大道3889号"
},
"公民身份号码": {
"location": {
"left": 443,
"top": 681,
"width": 589,
"height": 45
},
"words": "330881199904173914"
},
"出生": {
"location": {
"left": 270,
"top": 355,
"width": 357,
"height": 45
},
"words": "19990417"
},
"姓名": {
"location": {
"left": 267,
"top": 176,
"width": 152,
"height": 50
},
"words": "伍云龙"
},
"性别": {
"location": {
"left": 269,
"top": 262,
"width": 33,
"height": 52
},
"words": "男"
},
"民族": {
"location": {
"left": 492,
"top": 279,
"width": 30,
"height": 37
},
"words": "汉"
}
},
"words_result_num": 6
}
名称栏目:创新互联百度小程序教程:swan.ai.ocrIdCard
文章网址:http://www.csdahua.cn/qtweb/news6/522006.html
网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网