码迷,mamicode.com
首页 > 其他好文 > 详细

刷脸技术测试demo

时间:2015-09-07 13:03:42      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:刷脸   扫描   facecore   

刷脸技术测试demo


技术来源:facecore

http://www.facecore.cn/


技术分享



code 如下:

<!DOCTYPE html>
<html>
        <head>
        <meta charset="utf-8" />
        <script src="jquery-1.8.2.min.js" type="text/javascript"></script>
        <script src="jquery.faceRecognition.js"></script>
        <meta content="application/xhtml+xml;charset=UTF-8" http-equiv="Content-Type">
		<meta content="telephone=no, address=no" name="format-detection">
        <script type="text/javascript">
		$(function(){
			
			var url1="http://p7.qhimg.com/t012aa1295d0ecbe26b.jpg";
			var url2="http://npic7.edushi.com/cn/zixun/zh-chs/2015-09/06/8388-150Z6153447.png";
			
				$.ajax({
			    	url: ‘http://api.facecore.cn/api/urlfacedetectandcompare?appkey=f8fbb3505421fa6f1c5250cc414de246‘,
			    	type: ‘POST‘,
			    	data:{url1:url1,url2:url2},
			    	dataType: ‘json‘,
					success: function (data) {
						alert(data);
						var similar = Math.round(data.similar * 10000) / 100+"%";
						alert(similar);
					},
					error: function (msg) {
						alert(msg);
					}
				});
		});
		</script>

        <link rel="shortcut icon" href="favicon.ico" />
    </head>
<body>
<!-- 做对比的两张图片是:可以测试我和明星的相似度;-->
<img src="http://p7.qhimg.com/t012aa1295d0ecbe26b.jpg" width="300" />
<img src="http://npic7.edushi.com/cn/zixun/zh-chs/2015-09/06/8388-150Z6153447.png" width="300" />
</body>
</html>




调用结果如下:

技术分享


注意返回的是json数据。




The End!The End!The End!The End!The End!The End!The End!



2015-09-07 周一



只是因为此技术新奇,暂只测试facecore的,其它百度的、face++的都有人脸识别技术。后面有兴趣再弄弄。





本文出自 “PHPer许琴-专注于PHP技术” 博客,请务必保留此出处http://xuqin.blog.51cto.com/5183168/1692177

刷脸技术测试demo

标签:刷脸   扫描   facecore   

原文地址:http://xuqin.blog.51cto.com/5183168/1692177

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!