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

Is it possible to use faceAPI in linux

I am new to microsoft face API. Is it possible to use it in linux environment? I could not find any documentation about it in their website. Thanks.
Som
  • 185
  • 15
0
votes
3 answers

Use facial recognition to identify how many unique faces in a collection of photos

I've never used facial recognition, but I am interested in trying. I run a yearbook program at our school and we need a rough estimate of how many unique faces we have in a collection of photos. All the photos are on a hard drive and we need someone…
0
votes
0 answers

Calling Azure face detect api from NodeJs with binary image data coming from Postman client

I am trying to build a REST middle-ware in nodejs which will call azure face api's, like the picture shown below. When I call my node js endpoint for face detection with required data and an image file then the I successfully receive the request…
0
votes
1 answer

Microsoft.ProjectOxford.Face. AddFaceToLargeFaceListAsync from FTP with MemoryStream

I am using the WS of Microsoft FaceAPI. When using a FileStream all works well but I have to read images from FTP so I am using MemoryStream. I always ends with this exception : {Microsoft.ProjectOxford.Face.FaceAPIException: Image size is too…
Wajdi Chamakhi
  • 426
  • 5
  • 16
0
votes
0 answers

Azure Face API returns diminishing confidence for images of the same person

For our application we are using Azure Face API to build training set for each person. We are using "LargePersonGroup" for our application. We have created "Person" inside group for all user profiles we have. Every time new face is added for a…
0
votes
1 answer

Microsoft cognitive services Face API

What is suggested (optimal) image size to work with face API. Can't find anything about this. Looks like images should not be to small but either too large. Probably any recommendation how to prepare them before train model? Thanks.
baio
  • 1,102
  • 2
  • 12
  • 20
0
votes
1 answer

Microsoft Face API [find similar] api key error

So I'm trying to follow The microsoft face api documentation here for the "FindSimilar" feature. There is an example at the bottom of the page where I use this code: ########### Python 3.2 ############# import http.client, urllib.request,…
Gabriel
  • 405
  • 1
  • 6
  • 16
0
votes
1 answer

How long does Microsoft Cognitive Services store the data of Face API after ending my subscription?

The data used with Face API from Microsoft Cognitive Services are being saved on Microsoft datacenters. You could see on these both links:…
Peshmerge
  • 1,024
  • 1
  • 14
  • 27
0
votes
1 answer

Error when calling Cognitive Face API

I have a problem with microsoft's vision cognitive api for face recognition when i run python create_person.py user52 Traceback (most recent call last): File "create_person.py", line 9, in res = CF.person.create(personGroupId,…
Abid Omar
  • 21
  • 4
0
votes
1 answer

Azure face api return the same face id even the image changed

It seems that the api will store the image url and return the same face id even the actual image in the url changed. Is there any ways to force the api to redo the identification process and return a new face id?
William Wu
  • 473
  • 5
  • 16
0
votes
0 answers

Microsoft-Cognitive add new person with chinese name

I am using Face API now.The problem is about " add new person with chinese name ". What should I do so that I can add person with chinese name ? Now I only get "?" when I try to create person with my android project. However I could add a chinese…
shen
  • 11
  • 2
0
votes
0 answers

com.microsoft.projectoxford.vision.rest.visionserviceexception: unable to resolve host in android v1.0

I am using Microsoft Vision and Face api for extracting data from image and detect face from image. I am using the following link as reference: https://github.com/Microsoft/ProjectOxford-ClientSDK/tree/master/Vision/Android. It was working fine for…
0
votes
2 answers

Can you resolve identity queries whilst Face API is undergoing training?

I am investigating solutions for identifying people utilising facial recognition and I am interested in using Microsoft's Face API. I have noted that when adding new people the model needs to be trained again before those people will be…
Ross
  • 88
  • 9
0
votes
2 answers

Deserializing JsonArray

I've written a code which calls an API which returns a Json Array which I have tired to deserialize using Json.net as below- static async void MakeAnalysisRequest(string imageFilePath) { HttpClient client = new HttpClient(); //…
0
votes
0 answers

unable to use Face API in ASP.Net MVC

I am using Microsoft.ProjectOxford.Face and Microsoft.ProjectOxford.Face.Common to access face API. But as soon as I am calling a async method i'ts taking me to indefinite task and my page got refreshed. My development platform is ASP.Net…