之前已经写好了人脸图片入百度云人脸库,接下来是要将即时拍照的人脸与人脸库的人脸进行对比,
比对两张图片中人脸的相似度,返回相似度的值。
获取某个学生的信息
// 获取某个学生的信息
public function select($id=''){
$where['id'] = $id;
$ret = M('student')->where($where)->find();
return $this->ajaxReturn(array('msg'=>$ret));
}
获取全部学生的信息
// 获取全部学生信息
public function select_index(){
$pagesize=10;
$condition = $_GET['condition'];
$where=array();
if(!empty($condition)){
$where['a.no|a.name']=$condition;
}
$data = M('student')->
alias('a')->
where($w