@dfeidao/fd-an000005
v4.6.201909271125
Published
百度智能云-台湾通行证识别
Downloads
32
Maintainers
Readme
百度智能云-台湾通行证识别
Installation
yarn add --dev @dfeidao/fd-an000005参数
参数 | 默认值 | 是否必传 | 类型 | 描述 --|--|--|--|--|-- app_id | 从百度智能云申请的AppID api_key |从百度智能云获取的ApiKey secret_key | 从百度智能云获取的Secret Key images |图像数据,base64编码,要求base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/png/bmp格式
返回值
名称 | 说明 | --|-- address|地址 birthday|生日 card_num|台湾通行证号码 name_chn|中文姓名 name_eng|英语姓名 sex|性别 valid_date|有效期至
Example
- 客户端通过调用
import img2base64 from '@dfeidao/atom-web/file/img2base64';原子操作,把base64格式的图片传到服务端 - 服务端调用
@dfeidao/fd-an000005护照识别原子操作进行识别 - 需要注意的是 app_id, api_key, secret_key 不要出现在客户端,仅限在服务端出现
import an005 from '@dfeidao/fd-an000005';
export default async function atom(message: Message, action_id: string, session_id: string, headers: IncomingHttpHeaders): Promise<IWebResult> {
try {
const img = message.img;
const res = await an005('app_id', 'api_key', 'secret_key', message.img);
} catch (error) {
// 获取到具体的错误信息
console.log(error);
}
}