当前位置:   article > 正文

百度身份证文字识别_百度身份证识别 只识别出一个address

百度身份证识别 只识别出一个address

首先去百度智能云申请身份证识别接口 然后就用如下 APP_ID, API_KEY , SECRET_KEY

 

  1. //设置APPID/AK/SK
  2. private static String APP_ID = "";
  3. private static String API_KEY ="";
  4. private static String SECRET_KEY = "";
  5. public static String getPictureString(String photoPath) {
  6. String path = "";
  7. // 初始化一个AipOcr
  8. AipOcr client = new AipOcr(APP_ID, API_KEY, SECRET_KEY);
  9. // 可选:设置网络连接参数
  10. client.setConnectionTimeoutInMillis(2000);
  11. client.setSocketTimeoutInMillis(60000);
  12. // 传入可选参数调用接口
  13. HashMap<String, String> options = new HashMap<String, String>();
  14. // 是否检测朝向
  15. options.put("detect_direction", "false");
  16. // 是否检测风险
  17. options.put("detect_risk", "false");
  18. // 正反面front /back
  19. String idCardSide = "front";
  20. // 参数为本地图片路径
  21. try {
  22. JSONObject res = client.idcard(path, idCardSide, options);
  23. if (res != null) {
  24. JSONObject idCard = new JSONObject();
  25. JSONObject words_result = res.getJSONObject("words_result");
  26. if (res.get("image_status").equals("non_idcard")){
  27. return "";
  28. }
  29. idCard.put("name", words_result.getJSONObject("姓名").get("words"));
  30. idCard.put("nation", words_result.getJSONObject("民族").get("words"));
  31. idCard.put("address", words_result.getJSONObject("住址").get("words"));
  32. idCard.put("sex", words_result.getJSONObject("性别").get("words"));
  33. idCard.put("birth", words_result.getJSONObject("出生").get("words"));
  34. idCard.put("number", words_result.getJSONObject("公民身份号码").get("words"));
  35. return idCard.toString(2);
  36. } else {
  37. return "";
  38. }
  39. }catch (JSONException e){
  40. e.printStackTrace();
  41. }
  42. return null;
  43. }
  44. public static void main(String[] args) {
  45. // String pictureString = getPictureString("图片绝对路径");
  46. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/595771
推荐阅读
相关标签
  

闽ICP备14008679号