swan.ai.ocrVehicleLicense

解释 :对机动车行驶证正本所有关键字段进行识别。

方法参数

Object object

object参数说明 :

属性名类型必填默认值说明
imageString-图像资源地址
detect_directionBoolean是否检测图像旋转,可检验图像的选装方向和旋转角度。 · true:检测旋转角度并矫正识别。针对摆放情况不可控制的情况建议本参数置为true; · false:不检测旋转角度,默认不检测。
accuracyString-normal 使用快速服务,1200ms左右时延;缺省或其它值使用高精度服务,1600ms左右时延。
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

success 返回参数说明 :

参数类型说明
log_idNumber唯一的log id,用于问题定位。
words_result_numNumber识别结果数,表示words_result的元素个数。
words_resultObject识别结果

words_result 返回值说明

参数名参数类型说明
品牌型号Object品牌型号
发证日期Object发证日期
使用性质Object使用性质
发动机号码Object发动机号码
号牌号码Object号牌号码
所有人Object所有人
住址Object住址
注册日期Object注册日期
车辆识别代号Object车辆识别代号
车辆类型Object车辆类型

品牌型号、发证日期、使用性质、发动机号码、号牌号码、所有人、住址、注册日期、车辆识别代号、车辆类型 返回值说明

参数名参数类型说明
wordsString识别结果字符串

示例

在开发者工具中预览效果

swan.ai.ocrVehicleLicense - 图1请使用百度APP扫码

图片示例

swan.ai.ocrVehicleLicense - 图2

swan.ai.ocrVehicleLicense - 图3

swan.ai.ocrVehicleLicense - 图4

代码示例

  1. Page({
  2. ocrVehicleLicense() {
  3. swan.chooseImage({
  4. success: res => {
  5. let image = res.tempFilePaths[0];
  6. // AI系列的api有宿主使用限制,只可在百度App中使用,建议使用时加一层判断防止代码报未知错误
  7. let host = swan.getSystemInfoSync().host;
  8. if (host === 'baiduboxapp') {
  9. swan.ai.ocrVehicleLicense({
  10. image, // 暂不支持识别网络图片
  11. detect_direction: true,
  12. accuracy: normal
  13. success: res => {
  14. console.log('ocrVehicleLicense res', res.words_result);
  15. },
  16. fail: err => {
  17. console.log('ocrVehicleLicense err', err);
  18. }
  19. });
  20. }
  21. else {
  22. swan.showToast({
  23. title: '此api目前仅可在百度App上使用',
  24. icon: 'none'
  25. });
  26. }
  27. }
  28. })
  29. }
  30. });

返回值示例

  1. {
  2. "log_id": $log_id,
  3. "direction": 0,
  4. "words_result_num": 10,
  5. "words_result": {
  6. "品牌型号": {
  7. "words": "保时捷GT37182RUCRE"
  8. },
  9. "发证日期": {
  10. "words": "20160104"
  11. },
  12. "使用性质": {
  13. "words": "非营运"
  14. },
  15. "发动机号码": {
  16. "words": "20832"
  17. },
  18. "号牌号码": {
  19. "words": "苏A001"
  20. },
  21. "所有人": {
  22. "words": "圆圆"
  23. },
  24. "住址": {
  25. "words": "南京市江宁区弘景大道"
  26. },
  27. "注册日期": {
  28. "words": "20160104"
  29. },
  30. "车辆识别代号": {
  31. "words": "HCE58"
  32. },
  33. "车辆类型": {
  34. "words": "小型轿车"
  35. }
  36. }
  37. }
  38. }