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