Проблема с SDK Azure для FACE API с изображением FileStream - PullRequest
0 голосов
/ 08 февраля 2019

Мы пытаемся использовать sdk для использования служб когнитивных функций Microsoft.Мы используем интерфейс IFaceOperatiosn, внутри которого есть метод для отправки изображения в виде потока, например: DetectWithStreamWithHttpMessagesAsync.Когда мы пытаемся его использовать, мы достигаем APIErrorException с сообщением «Плохой запрос», но не знаем, в чем проблема, поэтому наш код:

public async Task<List<FaceAPI.Face>> DetectFace(string picture)
        {
            try
            {
                Stream img = new FileStream(picture, FileMode.Open);
                var res = await detect.DetectWithStreamWithHttpMessagesAsync(img);
                List<FaceAPI.Face> result = new List<FaceAPI.Face>();
                for (int i = 0; i < res.Body.Count; i++)
                {
                    result.Add(new FaceAPI.Face { Age = (double)res.Body[i].FaceAttributes.Age, Bald = res.Body[i].FaceAttributes.Hair.Bald > 0.5 ? true : false, Beard = res.Body[i].FaceAttributes.FacialHair.Beard > 0.5 ? true : false, Gender = res.Body[i].FaceAttributes.Gender.Value.Equals(Gender.Male) ? true : false, Glasses = res.Body[i].FaceAttributes.Glasses.Value.Equals(GlassesType.NoGlasses) ? false : true, Hair = res.Body[i].FaceAttributes.Hair.HairColor.ToString(), Moustache = res.Body[i].FaceAttributes.FacialHair.Moustache > 0.5 ? true : false,Rectangle=new System.Drawing.Rectangle { X = res.Body[i].FaceRectangle.Left, Y = res.Body[i].FaceRectangle.Top, Height = res.Body[i].FaceRectangle.Height, Width = res.Body[i].FaceRectangle.Width } });
                }
                return result;
            }
            catch (APIErrorException e)
            {
                Debug.WriteLine(e.Message);
                return null;
            }
            catch (SerializationException e)
            {
                Debug.WriteLine(e.Message);
                return null;
            }
            catch (ValidationException e)
            {
                Debug.WriteLine(e.Message);
                return null;
            }
        }

Обычно возвращается список лиц

1 Ответ

0 голосов
/ 08 февраля 2019

Вам нужно поставить атрибут wich, который вы хотите получить для обнаружения следующим образом:

var requiredFaceAttributes = new FaceAttributeType[] {
                    FaceAttributeType.Age,
                    FaceAttributeType.Hair,
                    FaceAttributeType.Gender,
                    FaceAttributeType.Smile,
                    FaceAttributeType.FacialHair,
                    FaceAttributeType.Glasses
                };
                var res = await detect.DetectWithStreamWithHttpMessagesAsync(picture,true,true,requiredFaceAttributes);
...