Questions tagged [face-api]

Face API is a cloud-based service that provides advanced algorithm for face detection, verification, identification, and more.

Microsoft Face API is a cloud-based service that provides face algorithms.

Face API has two main functions:

  1. Face detection: detects up to 64 human faces with high precision face location in an image.

  2. Face recognition: provides functionality related to face verification, finding similar faces, face grouping, and person identification.

262 questions
0
votes
1 answer

How to stop adding the same person again in FaceAPI persongroup

Is there a way to stop adding the same person in the FaceAPI persongroup? The problem is users who are already in the persongroup are adding themselves with different names. Below is the method I wrote. It returns the person GUID that is being added…
0
votes
1 answer

Microsoft Face API see database?

I'm using Microsoft Face API and I have many photos of persons there. I know that in azure database its saved only geometry of the face, not the whole photo. Now I want to see that data. I know that I can see part of this data, as I`m making…
stanimirsp
  • 2,548
  • 2
  • 26
  • 36
0
votes
1 answer

How to use FindSimilar function of Azure FaceAPI

I read things in detail. And write another code now. Everything is fine except one error. I have put config.py and util.py in similar folder and set my 'key' and 'url' in config.py. I don't understand why this error is coming then? Traceback (most…
Afshan Anwarali
  • 337
  • 1
  • 3
  • 12
0
votes
2 answers

Face API - Variation in # of Emotion Attributes

I am using the Microsoft Face API to detect faces and emotions in Android. I have a TreeMap whose key is the probability of an emotion attribute with the value being the attributes name like so: TreeMap treeMap = new…
Ishaan Javali
  • 1,711
  • 3
  • 13
  • 23
0
votes
1 answer

Microsoft ProjectOxford Face API Error: System.UriFormatException

I was following this documentation for using the Microsoft Face API to identify faces in an image in Visual Studio when I got the following error printed in the Console: Error adding Person to Group Exception of type…
0
votes
1 answer

Microsoft Cognitive Services Face-API and GDPR

I'm developing a bot application in which I'm using face api and vision api. The app is streaming pictures to those apis. According to GDPR I will need consent from the user(s) of the app to send those pictures to the api. But GDPR also states that…
Jonsom01
  • 3
  • 1
0
votes
1 answer

Azure Cognitive Services - Face API Response: Reserved Fields or Bugs?

In the Azure Cognitive Services Face API (see e.g. https://azure.microsoft.com/en-us/services/cognitive-services/face), the following response fields never seem to trigger: headPose:pitch (reserved field) foreheadOccluded eyeOccluded Am I misusing…
jtlz2
  • 7,700
  • 9
  • 64
  • 114
0
votes
1 answer

Microsoft Cognitive Face API Person Group Create Error

I'm trying to create a person-group using MS Cognitive face API but I keep getting the error message "The remote server returned an error: (404) Not Found.". Below is my source code. Would be glad if anybody could help me solve this. using (var q3 =…
mparra
  • 1
0
votes
2 answers

Bad code request for face verification in Azure Face API on Python

I am learning how to use this API, to start with, i thought of running a simple program and this is what happens: code: subscription_key = "**" assert subscription_key face_api_url =…
Shobhit Kumar
  • 626
  • 1
  • 5
  • 21
0
votes
1 answer

Azure Face API, python SDK attribute url

I'm using the Python SDK snippet provided by Azure docs. BASE_URL ="https://eastus.api.cognitive.microsoft.com/face/v1.0/ CF.BaseUrl.set(BASE_URL) I want to return face attributes, The docs referenced here suggest that adding…
F.D
  • 767
  • 2
  • 10
  • 23
0
votes
1 answer

Using Face API to augment identity services

My application is already based on Azure B2C, but I'd like to add face recognition as an additional, alternative sign in method (with pin, of course). But this application would require onboarding users one at a time. I've only done a quick perusal…
Bill Noel
  • 1,120
  • 9
  • 21
0
votes
2 answers

'bool' object not iterable

I am working on python3, opencv 3.4 and using Microsoft Azure's FaceAPI function 'CF.face.detect()' As far as I know, 'for loop' needs iterable object to run on like list but simple boolean is not iterable. Though 'res1' is a list I get this…
Afshan Anwarali
  • 337
  • 1
  • 3
  • 12
0
votes
1 answer

Microsoft Azure Face API - Face detect (no result)

While using Face detect service of Face API V1.0 I encounter no errors but no result also. I am working on c#. API key is valid and shows result on other codes. Any help is appreciated. Thanks in advance. Code is as follows: using System; using…
Afshan
  • 1
  • 7
0
votes
0 answers

Python - Face Api by microsoft - there is no persisted faces of person

I have trained the face API using person_group.train() method. Then I have used person_group.status() to get the status of training but it showed: {'status': 'failed', 'createdDateTime': '6/19/2018 10:34:40 AM', 'lastActionDateTime': '06/19/2018…
0
votes
1 answer

Microsoft Cognitive Services Face API - Identify vs. FindSimilar

I am building a celebrity matching facial recognition service. I have multiple pictures for each celebrity, and I want to match the user's query face to the closest celebrity. There are two ways to do this using Microsoft's Cognitive Services Face…
Riuo
  • 413
  • 1
  • 3
  • 15