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

Add Multiple Faces to one person -Microsoft Cognitive Face API

The Documentation contains the code for adding one face to a person but How to Identify Faces?? shows multiple images adding option to one person.. The below code to add one face to a person is: import httplib, urllib, base64 headers = { #…
0
votes
1 answer

Validation of adding face to person group

How should I check whether this detected face existed in the face API storage, else add the detected face to the particular personId of the person group? Example of List Persons in a Person Group (JSON format): [{ "personId": "1234", …
Milky
  • 73
  • 1
  • 4
  • 12
0
votes
1 answer

Android calling Face[] detect with faceAttributesType

I have succesfully implemented the below: private FaceServiceClient faceServiceClient = new FaceServiceRestClient("xxx", "yyy"); private void detectAndFrame(final Bitmap imageBitmap) { ByteArrayOutputStream outputStream = new…
czane
  • 392
  • 1
  • 6
  • 18
0
votes
1 answer

Azure - Can we use `PersistedFaceId` instead of `FaceId` for Find Similiar first query param

API Face - Face Similar requires a FaceId, FaceListId and some optional parameters. I was wondering would a PersistedFaceId work instead of the returned FaceId from API Face - Face Detect?
Puzzle
  • 23
  • 1
  • 4
0
votes
0 answers

FaceAPIException: while using the method DetectAsync

I'm trying to use the DetectAsync method present in faceServiceClient. using (Stream imageFileStream = webClient.OpenRead(imageFilePath)) { var faces = await faceServiceClient.DetectAsync(imageFileStream, returnFaceLandmarks: true,…
NSetty
  • 140
  • 11
0
votes
1 answer

Face API DetectAsync Error

I wanted to create a simple program to detect faces using Microsoft Azure Face API and Visual Studio 2015. Following the guide from…
user8824475
0
votes
1 answer

Getting the Color of the Lips using face API

The Face API gives coordinates of the lips but can we specifically get the color of the lips?
Rowdur
  • 602
  • 4
  • 11
0
votes
2 answers

Azure Face API identify - Bad request 400

I am trying below snippet of code for face identify of azure samples with proper Subscription-Key. I get bad request 400 - can any one please help me how to send request body to work for this ajax call. …
SaKol
  • 99
  • 10
0
votes
1 answer

How does face group work?

I'm very confused about the documentation because in order to call the endpoint /group you need faceIDs. Thus if you want to have faceIDs you need to through face /detect. But a faceIDs is available for 24h only: The faceId will expire 24 hours…
Jay Cee
  • 1,855
  • 5
  • 28
  • 48
0
votes
0 answers

Face Recognition API on Microsoft Azure

I need to know, what is the latency for faceAPI recognition in general and how much time taken for face recognition from application to Cortana intelligence.
0
votes
1 answer

Image size is too small while uploading from local storage, Microsoft Face API

I m calling Microsoft Face API for detecting the face in an image. While loading an image from local , I always get an error as below { code: 'InvalidImageSize', message: 'Image size is too small.' } But using the same image via URL , its…
g.shiva
  • 1
  • 2
0
votes
1 answer

I am using Microsoft's Face API. It requires to create a DB at their server. is it possible to use our own DB, rather than creating one at their end

I am trying to use Microsoft's Face API, for facial recognition for my company employees. I see that you need to create a database in Microsoft's serverS. Is there a way to use their API's on our company database (without creating another DB on…
badcoder29
  • 51
  • 1
  • 5
0
votes
1 answer

Failed to run Cognitive-Face-Python-master test

I'm exploring the Face API. I'm using a GUI sample. GUI link: https://github.com/Microsoft/Cognitive-Face-Python This error occurs when I run the sample: Traceback (most recent call last): File "D:\Tin…
0
votes
1 answer

Using Face API To Identify Users

I am trying to create the ability to take a picture of a person and locate their user account based on a picture of them. I have 1MM users and each will have a photo which is only of them and will be associate to their user account via the creation…
Todd Carter
  • 879
  • 7
  • 20
0
votes
0 answers

camera2 api how to capture on face detection programatically

I want to save image only if face is detected, currently it is saving even if face is not present. I want to capture only if the face detected, I am using android face API for face detection. My code:here i want to save image only if there are faces…
Abhi
  • 193
  • 1
  • 2
  • 11