如何使用Azure Cognitive Face API验证两个图像?需要样本代码 [英] How to verify two Images using Azure Cognitive Face API ? Need Sample Code

查看:84
本文介绍了如何使用Azure Cognitive Face API验证两个图像?需要样本代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用Azure Cognitive Face API验证两个图像?需要示例代码

我有一个人的两张照片.现在,我想比较这些图像并检查这些图像是否属于同一个人.从文档中我知道,我必须发送两个faceid以及url.我试过了,但是没有用.可能是,我缺少了一些东西.请为我提供相同的&如果可能的话,请提供一些相同的示例代码.

I have two images of a single person. Now I want to compare those images and check whether those images are of same person or not. From the documentation I came to know that, I have to send two faceid's along with the url. I tried that, but it is not working. May be, I am missing something. Please help me for the same & provide me some sample code for the same if possible.

等待您的答复.

推荐答案

尝试下面的控制台应用代码:

Try the console app code below :

using Microsoft.Azure.CognitiveServices.Vision.Face;
using Microsoft.Azure.CognitiveServices.Vision.Face.Models;
using System;
using System.IO;
using System.Linq;
using System.Threading;

namespace FaceIdentityTest
{
    class Program
    {

        static void Main(string[] args)
        {


            string persionPicPath = @"<some path>\personPic.jpg";

            String[] picsPath = { @"<some path>\pic1.jpg", @"<some path>\pic2.jpg" };

            string endpoint = @"https://<your endpoint name>.cognitiveservices.azure.com/";
            string subscriptionKey = "<your subscription key>";



            IFaceClient faceClient = new FaceClient(
            new ApiKeyServiceClientCredentials(subscriptionKey),
            new System.Net.Http.DelegatingHandler[] { });

            faceClient.Endpoint = endpoint;

            // Create an empty PersonGroup
            Console.WriteLine("create person group");
            string personGroupId = "demogroup";
            faceClient.PersonGroup.CreateAsync(personGroupId, "demo group").GetAwaiter().GetResult();

            // Define a person named Bill
            Console.WriteLine("create a person in group");
            var createPersonResult = faceClient.PersonGroupPerson.CreateAsync(
                // Id of the PersonGroup that the person belonged to
                personGroupId,
                // Name of the person
                "Bill"
            ).GetAwaiter().GetResult();


            //Add a face to Bill
            Console.WriteLine("Add a face to person");
            using (Stream s = File.OpenRead(persionPicPath))
            {
                // Detect faces in the image and add to Anna
                faceClient.PersonGroupPerson.AddFaceFromStreamAsync(
                    personGroupId, createPersonResult.PersonId, s).GetAwaiter().GetResult();
            }

            //Train person group 
            Console.WriteLine("start train person group...");
            faceClient.PersonGroup.TrainAsync(personGroupId).GetAwaiter().GetResult();


            //Check train status
            TrainingStatus trainingStatus = null;
            while (true)
            {
                trainingStatus = faceClient.PersonGroup.GetTrainingStatusAsync(personGroupId).GetAwaiter().GetResult();

                if (trainingStatus.Status != TrainingStatusType.Running)
                {
                    break;
                }
                else {
                    Console.WriteLine("trainning person group...");
                }

                Thread.Sleep(1000);
            }


            foreach (var pic in picsPath) {

                Console.WriteLine("start identify faces in :" + pic);

                using (Stream s = File.OpenRead(pic))
                {
                    var faces = faceClient.Face.DetectWithStreamAsync(s).GetAwaiter().GetResult();
                    var faceIds = faces.Select(face => (Guid)face.FaceId).ToList();

                    var results = faceClient.Face.IdentifyAsync(faceIds, personGroupId).GetAwaiter().GetResult();
                    foreach (var identifyResult in results)
                    {
                        Console.WriteLine("Result of face: {0}", identifyResult.FaceId);
                        if (identifyResult.Candidates.Count == 0)
                        {
                            Console.WriteLine("No one identified");
                        }
                        else
                        {
                            // Get top 1 among all candidates returned
                            var candidateId = identifyResult.Candidates[0].PersonId;
                            var person = faceClient.PersonGroupPerson.GetAsync(personGroupId, candidateId).GetAwaiter().GetResult();
                            Console.WriteLine("Identified as {0}", person.Name);
                        }
                    }

                }

            }
            Console.ReadKey();
        }
    }
}

我的照片:

结果:

顺便说一句,无论您使用哪种编程语言,只需按照本演示中的步骤操作,就能使用Face API来识别人脸.

Btw, no matter which programming language you are using , just follow the steps in this demo will be able to use Face API to identify faces .

希望它会有所帮助.

您可以在VS中导入Microsoft.Azure.CognitiveServices.Vision.Face:

You can import Microsoft.Azure.CognitiveServices.Vision.Face here in VS :

这篇关于如何使用Azure Cognitive Face API验证两个图像?需要样本代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆