SpringBoot整合百度云人脸识别功能

news/2024/11/29 22:48:23/

SpringBoot整合百度云人脸识别功能

1.在百度官网创建应用

首先需要在百度智能云官网中创建应用,获取AppID,API Key,Secret Key

官网地址:https://console.bce.baidu.com/

image-20230527212420738

2.添加百度依赖

添加以下依赖即可。其中版本号可在maven官网查询

<dependency><groupId>com.baidu.aip</groupId><artifactId>java-sdk</artifactId><version>${version}</version>
</dependency>

3.在application.yml中添加属性

便于后面去获取值

image-20230527212843730

4.创建AipFace

AipFace是人脸识别的Java客户端,为使用人脸识别的开发人员提供了一系列的交互方法。初始化完成后建议单例使用,避免重复获取access_token(官方原话)

@Configuration
public class BaiduConfig {@Value("${baidu.appId}")private String appId;@Value("${baidu.key}")private String key;@Value("${baidu.secret}")private String secret;@Beanpublic AipFace aipFace(){return new AipFace(appId,key,secret);}
}

5.注册人脸接口

客户端上传的人脸的图片的Base64编码,并将该用户人脸图形进行本地保存,且存入数据库

@Value("${PhotoPath}")
private String filePath;@Autowired
private AipFace aipFace;@RequestMapping(value = "register",method = RequestMethod.POST)
public String register(String userName,String faceBase) throws IOException {if(!StringUtils.isEmpty(userName) && !StringUtils.isEmpty(faceBase)) {// 文件上传的地址System.out.println(filePath);// 图片名称String fileName = userName + System.currentTimeMillis() + ".png";System.out.println(filePath + "\\" + fileName);File file = new File(filePath + "\\" + fileName);// 往数据库里插入一条用户数据Users user = new Users();user.setUserName(userName);user.setUserPhoto(filePath + "\\" + fileName);//判断用户名是否重复LambdaQueryWrapper<User> queryWrapper = new LambdaQueryWrapper<>();queryWrapper.eq(User::getUserName, userName);User exitUser = userService.getOne(queryWrapper);if (exitUser != null) {return "2";}userService.save(user);// 保存上传摄像头捕获的图片saveLocalImage(faceBase, file);// 向百度云人脸库插入一张人脸faceSetAddUser(aipFace,faceBase,user.getUserId());}return "1";
}public boolean saveLocalImage(String imgStr, File file) {// 图像数据为空if (imgStr == null) {return false;}else {BASE64Decoder decoder = new BASE64Decoder();try {// Base64解码byte[] bytes = decoder.decodeBuffer(imgStr);for (int i = 0; i < bytes.length; ++i) {if (bytes[i] < 0) {bytes[i] += 256;}}// 生成jpeg图片if(!file.exists()) {file.getParentFile().mkdir();OutputStream out = new FileOutputStream(file);out.write(bytes);out.flush();out.close();return true;}} catch (Exception e) {e.printStackTrace();return false;}} return false;	
}public boolean faceSetAddUser(AipFace client, String faceBase, String userId) {// 参数为数据库中注册的人脸HashMap<String, String> options = new HashMap<String, String>();options.put("user_info", "user's info");JSONObject res = client.addUser(faceBase, "BASE64", "user_01", userId, options);return true;
}

6.人脸登录接口

@RequestMapping(value = "login",method = RequestMethod.POST)
public String login(String faceBase) {String faceData = faceBase;// 进行人像数据对比Double num = verifyUser(faceData,aipFace);if( num > 80) {return "1";}else {return "2";}
}public Double verifyUser(String imgBash64,AipFace client) {// 传入可选参数调用接口HashMap<String, String> options = new HashMap<String, String>();JSONObject res = client.search(imgBash64, "BASE64", "user_01", options);JSONObject user = (JSONObject) res.getJSONObject("result").getJSONArray("user_list").get(0);Double score = (Double) user.get("score");return score;
}

7.注册登录页面(参考)

其实比较困难的是这个PC端采集用户人脸图像,需要调用PC摄像头。

<style type="text/css">*{margin: 0;padding: 0;}html,body{width: 100%;height: 100%;}/**/h1{color: #fff;text-align: center;line-height: 80px;}.media{width: 450px;height: 300px;line-height: 300px;margin: 40px auto;}.btn{width: 250px;height:50px; line-height:50px; margin: 20px auto; text-align: center;}#register{width: 200px;height:50px;background-color: skyblue;text-align: center;line-height: 50px;color: #fff;}#canvas{display: none;}#shuru{width: 250px;height:50px; line-height:50px;background-color: skyblue; margin: 20px auto; text-align: center;}
</style>
</head>
<body><h1>百度云人脸注册</h1><div id="shuru">用户名:<input type="text" name="username" id="username"/></div><div class="media"><video id="video" width="450" height="300" src="" autoplay></video><canvas id="canvas" width="450" height="300"></canvas></div><div class="btn"><button id="register" >确定注册</button></div><script type="text/javascript" src="js/jquery-3.3.1.js"></script><script type="text/javascript">/**调用摄像头,获取媒体视频流**/var video = document.getElementById('video');//返回画布二维画图环境var userContext = canvas.getContext("2d");var getUserMedia = //浏览器兼容,表示在火狐、Google、IE等浏览器都可正常支持(navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia)//getUserMedia.call(要调用的对象,约束条件,调用成功的函数,调用失败的函数)getUserMedia.call(navigator,{video: true,audio: false},function(localMediaStream){//获取摄像头捕捉的视频流video.srcObject=localMediaStream;},function(e){console.log("获取摄像头失败!!")});//点击按钮注册事件var btn = document.getElementById("register");btn.onclick = function () {var username = $("#username").val();alert($("#username").val());if(username != null){//点击按钮时拿到登陆者面部信息userContext.drawImage(video,0,0,450,300);var userImgSrc = document.getElementById("canvas").toDataURL("img/png");//拿到bash64格式的照片信息var faceBase = userImgSrc.split(",")[1];//ajax异步请求$.ajax({url: "register",type: "post",data: {"faceBase": faceBase,"userName": username},success: function(result){if(result === '1'){alert("注册成功!!,点击确认跳转至登录页面");window.location.href="toLogin";}else if(result === '2'){alert("您已经注册过啦!!");}else{alert("系统错误!!");}}})}else{alert("用户名不能为空");}}</script>
</body>

8.测试结果

测试成功后,百度平台上能看到用户组下的人脸数增加了


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

相关文章

TensorRT API将多个engine文件及plugin合并为一个engine文件

以下是使用TensorRT API将多个engine文件合并为一个engine文件的代码示例&#xff1a; import tensorrt as trt import numpy as np# create a TensorRT logger logger trt.Logger(trt.Logger.WARNING)# specify the names of the input and output bindings input_names [i…

内向的软件开发工程师如何在职场站稳阵脚?

本文框架 1.前言2. 几点个人心得2.1 要有自己拿得出手的模块2.2 善于整理归纳2.3 经常展示自己2.4 方法与努力 1.前言 最近跟一个博客上认识的朋友一起聊天&#xff0c;他基本情况是从其他监控设备行业转行到汽车电子做软件开发工程师一年左右&#xff0c;总感觉在团队中找不到…

JS笔记--Web APIS(下)

# Web APIs - 第5天笔记 ## 定时器 -延迟函数 JavaScript 内置的一个用来让代码延迟执行的函数&#xff0c;叫 setTimeout 语法&#xff1a; ~~~JavaScript setTimeout(回调函数, 延迟时间) ~~~ setTimeout 仅仅只执行一次&#xff0c;所以可以理解为就是把一段代码延迟…

http请求和响应(包含状态码)+过滤器

目录 一、http协议概述 二、http请求 三、http响应 四、过滤器 一、http协议概述 1.http&#xff1a;超文本传输协议&#xff0c;是用于在网络上传输数据的应用层协议。是互联网上应用最为流行的一种网络协议,用于定义客户端浏览器和服务器之间交换数据的过程&#xff0c;基…

单元测试(unit testing)到底是什么?

引言 做开发的同学应该都听说过单元测试&#xff08;unit testing&#xff09;&#xff0c;因为对单元测试的理解程度不同&#xff0c;所以对单元测试的看法也可能有所不同。本文就来深入讲解一下单元测试的概念、作用和是否需要做单元测试。 什么是单元测试&#xff08;unit…

【循环自相关和循环谱系列7】OFDM循环自相关推导分析、时间参数估计原理仿真及某无人机实际图传信号验证(含矩形/非矩形、有无循环前缀等情况)

重要声明:为防止爬虫和盗版贩卖,文章中的核心代码可凭【CSDN订阅截图或公z号付费截图】私信免费领取,一律不认其他渠道付费截图! 说明:本博客含大量公式推导分析,比较烧脑,需要有一定的数学基础,高等数学、信号与系统等! 这是循环自相关和循环谱系列的第七篇文章了…

详解c++STL—STL常用算法

目录 1、常用遍历算法 1.1、for_each 1.2、transform 2、常用查找算法 2.1、find 2.2、find_if 2.3、adjacent_find 2.4、binary_search 2.5、count 2.6、count_if 3、常用排序算法 3.1、sort 3.2、random_shuffle 3.3、merge 3.4、reverse 4、常用拷贝和替换算…

MySQL高频面试题

什么是DDL、DML、DQL DDL&#xff08;数据定义语言&#xff09;&#xff0c;用来定义&#xff08;创建删除修改&#xff09;数据库对象&#xff08;数据库、表、字段&#xff09; DML&#xff08;数据操纵语言&#xff09;&#xff0c;用来对数据库表中的数据进行增删查改&am…