百度AI图片文字识别工具类

官方开发示例:https://ai.baidu.com/tech/ocr_cars/vehicle_license
工具类中的APP_ID、API_KEY、SECRET_KEY等信息 需要自己注册百度账户,登录进去创建文字识别实例。
在这里插入图片描述
实现百度api图片文字识别,需要先引入jar包

	<!-- 百度识别jar -->
	<dependency>
	<groupId>com.baidu.aip</groupId>
	<artifactId>java-sdk</artifactId>
	<version>4.11.0</version>
	</dependency>

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLEncoder;
import java.util.List;
import java.util.Map;

import org.json.JSONObject;
import org.springframework.stereotype.Component;

import com.alibaba.fastjson.JSON;

@Component("baiDuOcrUtil")
public class BaiDuOcrUtil {
 
	//设置APPID/AK/SK
	 public static final String APP_ID = "12345678";
	 public static final String API_KEY ="abcdefghijklmn";
	 public static final String SECRET_KEY = "abcdefghijklmn";
 
	 
	 /**
	     * 获取权限token
	     * @return 返回示例:
	     * {
	     * "access_token": "24.460da4889caad24cccdb1fea17221975.2592000.1491995545.282335-1234567",
	     * "expires_in": 2592000
	     * }
	     */
	    public static String getAuth() {
	        // 官网获取的 API Key 更新为你注册的
	        String clientId = "abcdefghijklmn";
	        // 官网获取的 Secret Key 更新为你注册的
	        String clientSecret = "abcdefghijklmn";
	        return getAuth(clientId, clientSecret);
	    }

	    /**
	     * 获取API访问token
	     * 该token有一定的有效期,需要自行管理,当失效时需重新获取.
	     * @param ak - 百度云官网获取的 API Key
	     * @param sk - 百度云官网获取的 Securet Key
	     * @return assess_token 示例:
	     * "24.460da4889caad24cccdb1fea17221975.2592000.1491995545.282335-1234567"
	     */
	    public static String getAuth(String ak, String sk) {
	        // 获取token地址
	        String authHost = "https://aip.baidubce.com/oauth/2.0/token?";
	        String getAccessTokenUrl = authHost
	                // 1. grant_type为固定参数
	                + "grant_type=client_credentials"
	                // 2. 官网获取的 API Key
	                + "&client_id=" + ak
	                // 3. 官网获取的 Secret Key
	                + "&client_secret=" + sk;
	        try {
	            URL realUrl = new URL(getAccessTokenUrl);
	            // 打开和URL之间的连接
	            HttpURLConnection connection = (HttpURLConnection) realUrl.openConnection();
	            connection.setRequestMethod("GET");
	            connection.connect();
	            // 获取所有响应头字段
	            Map<String, List<String>> map = connection.getHeaderFields();
	            // 遍历所有的响应头字段
	            for (String key : map.keySet()) {
	                System.err.println(key + "--->" + map.get(key));
	            }
	            // 定义 BufferedReader输入流来读取URL的响应
	            BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
	            String result = "";
	            String line;
	            while ((line = in.readLine()) != null) {
	                result += line;
	            }
	            /**
	             	* 返回结果示例
	             */
	            System.err.println("result:" + result);
	            JSONObject jsonObject = new JSONObject(result);
	            String access_token = jsonObject.getString("access_token");
	            return access_token;
	        } catch (Exception e) {
	            System.err.printf("获取token失败!");
	            e.printStackTrace(System.err);
	        }
	        return null;
	    }
	    
	    /**
	     * 重要提示代码中所需工具类
	     * FileUtil,Base64Util,HttpUtil,GsonUtils请从
	     * https://ai.baidu.com/file/658A35ABAB2D404FBF903F64D47C1F72
	     * https://ai.baidu.com/file/C8D81F3301E24D2892968F09AE1AD6E2
	     * https://ai.baidu.com/file/544D677F5D4E4F17B4122FBD60DB82B3
	     * https://ai.baidu.com/file/470B3ACCA3FE43788B5A963BF0B625F3
	     * 下载
	     */
	     public static String vehicleLicense() {
	         // 请求url
	         String url = "https://aip.baidubce.com/rest/2.0/ocr/v1/vehicle_license";
	         try {
	             // 本地文件路径
	             String filePath = "D:\\Pictures\\xsz.jpg";
	             byte[] imgData = FileUtil.readFileByBytes(filePath);
	             String imgStr = Base64Util.encode(imgData);
	             String imgParam = URLEncoder.encode(imgStr, "UTF-8");

	             String param = "image=" + imgParam;

	             // 注意这里仅为了简化编码每一次请求都去获取access_token,线上环境access_token有过期时间, 客户端可自行缓存,过期后重新获取。
	             String accessToken = BaiDuOcrUtil.getAuth();

	             String result = HttpUtil.post(url, accessToken, param);
	             if(result!=null) {
	            	 com.alibaba.fastjson.JSONObject res = (com.alibaba.fastjson.JSONObject) JSON.parse(result);
	            	 	JSONObject idCard = new JSONObject();
	            	 	com.alibaba.fastjson.JSONObject words_result = res.getJSONObject("words_result");

		                idCard.put("clsbdh", words_result.getJSONObject("车辆识别代号").get("words"));
		                idCard.put("address", words_result.getJSONObject("住址").get("words"));
		                idCard.put("fzrq", words_result.getJSONObject("发证日期").get("words"));
		                idCard.put("ppxh", words_result.getJSONObject("品牌型号").get("words"));
		                idCard.put("cllx", words_result.getJSONObject("车辆类型").get("words"));
		                idCard.put("syr", words_result.getJSONObject("所有人").get("words"));
		                idCard.put("syxz", words_result.getJSONObject("使用性质").get("words"));
		                idCard.put("fdjhm", words_result.getJSONObject("发动机号码").get("words"));
		                idCard.put("zcrq", words_result.getJSONObject("注册日期").get("words"));
		                System.out.println(idCard.toString(2));
		                return idCard.toString(2);
	             }
	             return result;
	         } catch (Exception e) {
	             e.printStackTrace();
	         }
	         return null;
	     }

	     public static void main(String[] args) {
	    	 BaiDuOcrUtil.vehicleLicense();
	     }

}

这两个也是工具类,之前写的文章有,自己找找
在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

散装程序猿

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值