public static void FaceMatch() { var client = new Face.Face("Api Key", "Secret Key"); var image1 = File.ReadAllBytes("图片文件路径"); var image2 = File.ReadAllBytes("图片文件路径"); var image3 = File.ReadAllBytes("图片文件路径"); var images = new[] { image1, image2, image3 }; // 人脸对比 var result = client.FaceMatch(images); }
public void FaceMatch(string[] filePaths) { var images = new List <byte[]>(); foreach (var filePath in filePaths) { images.Add(File.ReadAllBytes(filePath)); } // 人脸对比 var result = client.FaceMatch(images); }
public static void FaceMatch() { var client = new Face.Face(Config.clientId, Config.clientSecret); var image1 = File.ReadAllBytes("图片文件路径"); var image2 = File.ReadAllBytes("图片文件路径"); var image3 = File.ReadAllBytes("图片文件路径"); var images = new[] { image1, image2, image3 }; // 人脸对比 var result = client.FaceMatch(images); }