开发工具:idea+mysql+jdk1.8+wechat
1.在官网进行了认证之后,获得相对应的SDK-----算法库,jar包,导入到pom文件
java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
TIP1:(DLL路径问题)除了要有jar之外还有吧其中想对应的算法库打包进去,检测系统在进行人脸算法检查的时候需要调用到算法库,在IDEA中设置(-Djava.library.path=****)-------是没有效果的!!
解决办法:
将dll库文件放入到项目运行的libaray目下面:(java.library.path)-------》可食用代码:
System.out.println(System.getProperty("java.library.path"));
将相关的路径输出,再将文件拷贝进去再运行
TIP2:对springboot中连接数据库过程中报错:(https://www.cnblogs.com/smiler/p/9983146.html)
后来查阅资料发现这都是因为安装mysql的时候时区设置的不正确 mysql默认的是美国的时区,而我们中国大陆要比他们迟8小时,采用+8:00格式
使用的数据库是MySQL,从上面图看出SpringBoot2.1在你没有指定MySQL驱动版本的情况下它自动依赖的驱动是8.0.12很高的版本,这是由于数据库和系统时区差异所造成的,在jdbc连接的url后面加上
serverTimezone=GMT即可解决问题,如果需要使用gmt+8时区,需要写成GMT%2B8,否则会被解析为空。再一个解决办法就是使用低版本的MySQL jdbc驱动,5.1.28不会存在时区的问题。
2.抄上几个类的通用代码----都是一些初始化 FaceEngine 相关组件的代码功能。
源码(https://github.com/itboyst/ArcSoftFaceDemo)
其中核心的检测逻辑如下:
oid addFaceToCache(Integer groupId, FaceUserInfo userFaceInfo) throws ExecutionException; List<FaceInfo> detectFaces(ImageInfo imageInfo); List<ProcessInfo> process(ImageInfo imageInfo); /** * 人脸特征 * @param imageInfo * @return */ byte[] extractFaceFeature(ImageInfo imageInfo) throws InterruptedException; /** * 人脸比对 * @param groupId * @param faceFeature * @return */ List<FaceUserInfo> compareFaceFeature(byte[] faceFeature, Integer groupId) throws InterruptedException, ExecutionException;
人脸检测的流程入库所示:
3.最终效果展示:
其中的pojo类中封装了用户的姓名,性别,年龄,相似度。