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