26 lines
846 B
C#
26 lines
846 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
namespace Personnel.BaiduAI
|
|
{
|
|
public class BaiduAIConfig
|
|
{
|
|
/// <summary>
|
|
/// 百度云中开通对应服务应用的 APP Key
|
|
/// </summary>
|
|
public static string clientId = "7zjiRWQQlbPWdTC93vzPtkgl";
|
|
//public static string clientId = "TEfEBG8vDCoc74MkFFpkhR1B"; //测试使用
|
|
|
|
/// <summary>
|
|
/// 百度云中开通对应服务应用的 Secret Key
|
|
/// </summary>
|
|
public static string clientSecret = "ZTx9pel4jZucPFGSFNEgmDrjI857oy7O ";
|
|
//public static string clientSecret = "KxavDsrRNGZAHs0QDgHmrGuPOf1FLORn";//测试使用
|
|
//人脸库
|
|
public static string GROUP_ID = "yxcl";
|
|
|
|
//识别度
|
|
public static int RECOGNITION_DEGREE = 90;
|
|
}
|
|
} |