首页 > 其他 > 详细

face++实现人脸识别

时间:2014-05-09 02:06:06      阅读:391      评论:0      收藏:0      [点我收藏+]

最近做了一个使用face++实现人脸识别的功能,当初看着官方文档一点头绪都没有,看了好久才弄明白,所以在这里记录一下,希望可以帮到需要的人,

首先要注册一个face++账号,获取apiKey和apiSecret,把face++的jar包添加到libs目录下,接下来是实现这个功能的代码,核心代码如下:

					//获取第一张图片的信息
					byte[] array1 = imageProcessing(firstPath);
					JSONObject result1 = httpRequests.detectionDetect(new PostParameters().setImg(array1));
					String face1 = result1.getJSONArray("face").getJSONObject(0).getString("face_id");
					System.out.println("face1的id=" + face1);
					//获取第二张图片的信息
					byte[] array2 = imageProcessing(secondPath);
					JSONObject result2 = httpRequests.detectionDetect(new PostParameters().setImg(array2));
					String face2 = result2.getJSONArray("face").getJSONObject(0).getString("face_id");
					System.out.println("face2的id=" + face2);
						
					System.out.println("开始比较:");
					//对比两张人脸的相似程度
					JSONObject Compare = httpRequests.recognitionCompare(new PostParameters().setFaceId1(face1).setFaceId2(face2));
					final Double smilar = Double.valueOf(Compare.getString("similarity"));
运行后的效果如下:

bubuko.com,布布扣

具体代码下载:




face++实现人脸识别,布布扣,bubuko.com

face++实现人脸识别

原文:http://blog.csdn.net/zhong1113/article/details/25332893

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!