Exemple #1
0
 public static void Antiporn()
 {
     var client = new Baidu.Aip.ImageCensor.AntiPorn("Api Key", "Secret Key");
     var image  = File.ReadAllBytes("图片文件路径");
     var result = client.Detect(image);
 }
Exemple #2
0
 public static void AntipornGif()
 {
     var client = new Baidu.Aip.ImageCensor.AntiPorn(AiKeySecret.ApiKey, AiKeySecret.SecretKey);
     var image  = File.ReadAllBytes("Gif图片文件路径");
     var result = client.DetectGif(image);
 }