29 lines
786 B
C#
29 lines
786 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BaiduAIAPI
|
|
{
|
|
public class Config
|
|
{
|
|
public static String clientId = "d0Am8dEG9lxKeNohMDwvSBgd";
|
|
// 百度云中开通对应服务应用的 Secret Key
|
|
public static String clientSecret = "ek5bhSTnzwIM1wg2gej0HwYP23rWon8A";
|
|
|
|
//人脸库
|
|
public static string GROUP_ID = "gsyw_cs";
|
|
|
|
//识别度
|
|
public static int RECOGNITION_DEGREE = 90;
|
|
}
|
|
|
|
public class ConfigFact
|
|
{
|
|
public static String clientId = "d0Am8dEG9lxKeNohMDwvSBgd";
|
|
// 百度云中开通对应服务应用的 Secret Key
|
|
public static String clientSecret = "ek5bhSTnzwIM1wg2gej0HwYP23rWon8A";
|
|
}
|
|
}
|