OCR识别行驶证(阿里云和百度云)

news/2024/12/22 15:22:34/

OCR识别行驶证(阿里云百度云)

一、使用场景

1、通过识别行驶证,获取相关汽车信息,替代手输

二、效果图

在这里插入图片描述

三、代码部分:

1、阿里云OCR

1.1、控制层

@PostMapping("/ocrCard")
public JSONObject ocrCard(@RequestPart("file") MultipartFile file, String type){//正面为face,反面为backJSONObject jsonObject = OcrUtils.ocrCard(file,type);return jsonObject;
}

1.2、OcrUtils工具类

public class OcrUtils {public static final String host = "https://driving.market.alicloudapi.com";public static final String path = "/rest/160601/ocr/ocr_vehicle.json";public static final String appcode = "替换成自己申请的";/*** type是前端传值,face为正面,face为反面*/public static JSONObject ocrCard(MultipartFile file,String type){String imgBase64 = encodeImageToBase64(file);JSONObject jsonObject = new JSONObject();//如果文档的输入中含有inputs字段,设置为True, 否则设置为FalseBoolean is_old_format = false;//请根据线上文档修改configure字段JSONObject configObj = new JSONObject();configObj.put("side", type);String config_str = configObj.toString();String method = "POST";Map<String, String> headers = new HashMap<String, String>();//header中的格式headers.put("Authorization", "APPCODE " + appcode);Map<String, String> querys = new HashMap<String, String>();// 拼装请求body的json字符串JSONObject requestObj = new JSONObject();try {if(is_old_format) {JSONObject obj = new JSONObject();obj.put("image", getParam(50, imgBase64));if(config_str.length() > 0) {obj.put("configure", getParam(50, config_str));}JSONArray inputArray = new JSONArray();inputArray.add(obj);requestObj.put("inputs", inputArray);}else{requestObj.put("image", imgBase64);if(config_str.length() > 0) {requestObj.put("configure", config_str);}}} catch (JSONException e) {e.printStackTrace();}String bodys = requestObj.toString();try {HttpResponse response = HttpUtils.doPost(host, path, method, headers, querys, bodys);int stat = response.getStatusLine().getStatusCode();if(stat != 200){System.out.println("Http code: " + stat);System.out.println("http header error msg: "+ response.getFirstHeader("X-Ca-Error-Message"));System.out.println("Http body error msg:" + EntityUtils.toString(response.getEntity()));return jsonObject;}String res = EntityUtils.toString(response.getEntity());JSONObject res_obj = JSON.parseObject(res);if(is_old_format) {JSONArray outputArray = res_obj.getJSONArray("outputs");String output = outputArray.getJSONObject(0).getJSONObject("outputValue").getString("dataValue");JSONObject out = JSON.parseObject(output);return out;}else{return res_obj;}} catch (Exception e) {e.printStackTrace();}return jsonObject;}/** 获取参数的json对象*/public static JSONObject getParam(int type, String dataValue) {JSONObject obj = new JSONObject();try {obj.put("dataType", type);obj.put("dataValue", dataValue);} catch (JSONException e) {e.printStackTrace();}return obj;}private static String encodeImageToBase64(MultipartFile file) {try {byte[] content = file.getBytes();return new String(encodeBase64(content));} catch (IOException e) {e.printStackTrace();return "";}}
}
2、百度云OCR

2.1、控制层

@PostMapping("/ocrCardBd")
public JSONObject ocrCardBd(@RequestPart("file") MultipartFile file,String type){JSONObject jsonObject = OcrBdUtils.ocrCard(file,type);return jsonObject;
}

2.2、OcrBdUtils工具类

public class OcrBdUtils {public static final String apiKey = "替换成自己的";public static final String secretKey = "替换成自己的";public static final String tokenUrl = "https://aip.baidubce.com/oauth/2.0/token";public static final String apiUrl = "https://aip.baidubce.com/rest/2.0/ocr/v1/vehicle_license";/*** type是前端传值,front为正面(默认),back为反面*/public static JSONObject ocrCard(MultipartFile file, String type) {try {String accessToken = getAccessToken();String apiEndpoint = apiUrl + "?access_token=" + accessToken;// 获取文件字节数组并进行Base64编码byte[] fileBytes = file.getBytes();String imgStr = Base64Util.encode(fileBytes);String imgParam = URLEncoder.encode(imgStr, "UTF-8");// 构造请求的URL和参数URL url = new URL(apiEndpoint);HttpURLConnection connection = (HttpURLConnection) url.openConnection();connection.setRequestMethod("POST");connection.setDoOutput(true);connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");// 发送请求参数String postData = "image=" + imgParam + "&vehicle_license_side=" + type;connection.getOutputStream().write(postData.getBytes());// 获取响应InputStream inputStream = connection.getInputStream();String response = readStream(inputStream);return JSONObject.parseObject(response);} catch (IOException e) {e.printStackTrace();return new JSONObject();}}// 获取令牌public static String getAccessToken() throws IOException {URL url = new URL(tokenUrl + "?grant_type=client_credentials&client_id=" + apiKey + "&client_secret=" + secretKey);HttpURLConnection connection = (HttpURLConnection) url.openConnection();connection.setRequestMethod("GET");InputStream responseStream = connection.getInputStream();String response = StreamUtils.copyToString(responseStream, java.nio.charset.StandardCharsets.UTF_8);JSONObject jsonObject = JSONObject.parseObject(response);return jsonObject.getString("access_token");}// 读取输入流的内容private static String readStream(InputStream inputStream) throws IOException {try (ByteArrayOutputStream outputStream = new ByteArrayOutputStream()) {byte[] buffer = new byte[1024];int bytesRead;while ((bytesRead = inputStream.read(buffer)) != -1) {outputStream.write(buffer, 0, bytesRead);}return outputStream.toString();}}
}

一个在学习中的开发者,勿喷,欢迎交流


http://www.ppmy.cn/news/1512175.html

相关文章

动态规划篇-代码随想录算法训练营第三十五天| 完全背包问题,322. 零钱兑换,518.零钱兑换II,组合总和 Ⅳ

完全背包问题 题目链接&#xff1a;52. 携带研究材料&#xff08;第七期模拟笔试&#xff09; 讲解视频&#xff1a; 带你学透完全背包问题&#xff01; 题目描述&#xff1a; 小明是一位科学家&#xff0c;他需要参加一场重要的国际科学大会&#xff0c;以展示自己的最新…

射频电路设计简略

设计射频电路是一个费时费力的事情&#xff0c;因为相对低频电路的设计&#xff0c;需要考虑的器件因素和布局因素较多&#xff0c;低频电路几乎不用考虑分布参数问题&#xff0c;而在射频电路中这些又是基本问题&#xff0c;设计的核心就是考虑合适的分布参数&#xff0c;另一…

Few-shot Learning

Few-shot Learning 一、基本概念 Few-shot learning 是一种机器学习方法&#xff0c;旨在从少量的样本中学习新的概念或任务。在传统的机器学习中&#xff0c;通常需要大量的标注数据来训练模型&#xff0c;以获得良好的性能。然而&#xff0c;在许多实际应用中&#xff0c;获…

原神4.8版本抽到角色和重点培养数据表

<!DOCTYPE html> <html lang"zh-cn"> <head><meta charset"UTF-8"><meta name"viewport" content"widthdevice-width, initial-scale1.0"><title>原神4.8版本抽到角色和重点培养数据表</title…

【Android】adb devices 出现devices offline的问题

1 问题 adb devices 出现devices offline 2 解决方法 adb kill-serveradb start-server 然后&#xff0c;adb devices查看。 adb devices 问题解决啦。。。&#x1f49b; &#x1f499; &#x1f49c; ❤️ &#x1f49a; &#x1f49b; &#x1f499; &#x1f49c; ❤️…

vscode修改选中文字颜色及当前tab颜色

VSCode-》首选项-》设置->-》搜color&#xff0c;找到&#xff1a;Workbench&#xff1a;Color Customizations&#xff0c;点击&#xff1a;在 settings.json 中编辑 加上 选中的文字内容的 配置 "workbench.colorCustomizations": {//设置用户选中代码段的颜色&…

eNSP 华为交换机链路聚合

华为交换机链路聚合 链路聚合好处&#xff1a; 1、提高带宽 2、链路冗余 SW_2&#xff1a; <Huawei>sys [Huawei]sys SW_2 [SW_2]vlan batch 10 20 [SW_2]int g0/0/4 [SW_2-GigabitEthernet0/0/4]port link-type access [SW_2-GigabitEthernet0/0/4]port default vl…

【消息队列与事件驱动架构】使用RabbitMQ、Kafka等工具实现消息队列与事件驱动架构

消息队列与事件驱动架构 使用RabbitMQ、Kafka等工具实现消息队列与事件驱动架构 引言 在现代分布式系统中&#xff0c;消息队列和事件驱动架构是实现系统解耦、提高可扩展性和容错性的关键技术。消息队列用于在各个服务之间传递消息&#xff0c;而事件驱动架构则通过事件的发…