바 이 두 얼굴 인식 얼굴 인식 Face Identify(출석 체크)
5004 단어 바 이 두 얼굴 인식얼굴 인식FaceIdentify
using System.Collections.Generic;
using UnityEngine;
using Baidu.Aip.Face;
using Newtonsoft.Json.Linq;
using UnityEngine.UI;
using System.IO;
// ,( )
public class FaceIdentify : MonoBehaviour {
private Face client;// API
private JObject result;//
private byte[] image;//
private Dictionary<string, object> options = new Dictionary<string, object>();//
private double scores;// ,
private string group_id;// ,
private int error_code;//
private string error_msg;//
public Text DebugText;
public Text DebugText1;
public Text DebugText2;
private string result_group_id;//result
private string result_uid;//result id
private string result_user_info;//result
public bool isSuccess = false;
private void Awake()
{
client = new Face(AccessToken.client_id, AccessToken.client_secret);
AccessToken.ClientCallback();//
}
private void Start()
{
DebugText.text = "";
DebugText1.text = "";
DebugText2.text = "";
}
public void faceIdentify()
{
Invoke("Identify", 5.0f);
}
void Identify()
{
group_id = "U3D1";
string path = Application.dataPath + "/ScreenShot/" + WebCamera.ScreenShotTexture2D + ".jpg";
image = File.ReadAllBytes(path);
options = new Dictionary<string, object>()
{
{"ext_fileds","faceliveness" },
{"user_top_num",1 }// 5
};
try//
{
result = client.Identify(group_id, image, options);
Debug.Log(result);
error_code = int.Parse(result["error_code"].ToString());// json , int
error_msg = result["error_msg"].ToString();// json
switch (error_code)
{
case 216100:
DebugText.text = "invalid param , ";
break;
case 216611:
DebugText.text = "user not exist id , ( 5s)";
break;
case 216401:
DebugText.text = "internal error ";
break;
case 216402:
DebugText.text = "face not found , ";
break;
case 216500:
DebugText.text = "unknown error ";
break;
case 216615:
DebugText.text = "fail to process images , ";
break;
case 216618:
DebugText.text = "no user in group , group ( 5s)";
break;
default:
DebugText.text = error_msg;
break;
}
if (error_code != 216100 || error_code != 216101|| error_code != 216401
|| error_code != 216402 || error_code != 216500 || error_code != 216615 || error_code != 216618)
{
DebugText1.text = result.ToString();//
}
}
catch
{
if (error_code != 216100 || error_code != 216101 || error_code != 216401
|| error_code != 216402 || error_code != 216500 || error_code != 216615 || error_code != 216618)
{
JToken res = result["result"];
scores = double.Parse(res[0]["scores"][0].ToString());
if (scores > 80.0f)
{
result_uid = res[0]["uid"].ToString();
result_group_id = res[0]["group_id"].ToString();
result_user_info = res[0]["user_info"].ToString();
DebugText1.text = " , !";
DebugText2.text = result_uid+"
"+ result_group_id+"
" + result_user_info;
Debug.Log(result_uid.ToString() + result_group_id.ToString() + result_user_info.ToString());
}
else
{
DebugText1.text = " , !";
}
}
}
}
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python + OpenCV로 얼굴 사진 자르기학생의 얼굴사진을 잘라야 한다. PC가 마음대로 해주지 않을까라고 생각하면서, 여러가지 검색해, 해 보면 할 수 있었으므로, 비망록적으로 써 보려고 한다. 사용하는 것은 'Python'입니다만, 이름을 들은 적이 있...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.