首页 > 代码库 > face++实现人脸识别

face++实现人脸识别

最近做了一个使用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"));
运行后的效果如下:

具体代码下载: