Questions tagged [face-recognition]

Face recognition is the process of matching faces to determine if the person shown in one image is the same as the person shown in another image. This is distinct from face detection which only determines where an image exists a face. Face recognition has broad use in security technology, social networking, cameras, etc.

Face recognition is the process of matching faces to determine if the person shown in one image is the same as the person shown in another image. This is distinct from face detection which only determines where in an image exists a face. Face recognition is part of a larger class of biometric technologies.

There are two main modes of face recognition, one to one (where two faces are compared to each other) and one to many (where one face is matched against many faces). There are a number of free and open source and commercial face recognition tools and libraries. Face recognition is built into cameras, social networking sites (like Facebook), photo sharing sites (like PicasaWeb), and smart phones (like modern iPhone and Android phones).

1818 questions
0
votes
2 answers

Open cv face recognition python

I started learning some object recognition and I'm interested in openCV. First of all, I tried the tutorial where your face is recognized. I installed numPy and openCV. When I tried running the program below, I received this error: File "path to…
MILKYsvk
  • 11
  • 6
0
votes
3 answers

How to get Correct Subscription key for microsoft Face API for Nodejs?

I am using project-oxford inorder to use Microsoft API with nodejs. I am keep on getting error that , {"code":"Unspecified","message":"Access denied due to invalid subscription key. Make sure you are subscribed to an API you are trying to call and…
Janani
  • 63
  • 2
  • 9
0
votes
0 answers

Biometric Facial Recognition Command Line Tool

I would like to perform a simple task: to upload a client image to the server and compare this image with other images in a folder. To do so I could use a command line tool compiled in a low or mid-level language (such as C) and call the binary via…
0
votes
1 answer

Face Recoginition Python open cv

Is there any way i can make my own train set for face recognition in python ? To be more specific i want to make a train set like an AT&T Face database. I want my camera to take 20 images of each person(30 max) and store it in the separate folders…
0
votes
1 answer

OpenImaj - recognize given face which is not taken from the face database

The OpenImaj Tutorial for face analysis shows how to do face recognition using some test images from the face database - http://openimaj.org/tutorial/eigenfaces.html How a new given image which is not from the face db can be recognized? Can you give…
mdp
  • 171
  • 1
  • 1
  • 8
0
votes
1 answer

Microsoft Cognitive Video face tracking APIs returns sometimes weird results

Face tracking service returns ID of faces found inside the video. If the video contains multiple cuts of different persons appearing one after the other, sometimes it happens they are registered under the same ID, also if they are different persons.…
0
votes
1 answer

Apply an operation on a sliding window in Matlab

I have an big image and I have to : First, apply a function to every possible patch of the image, like a sliding window. This is actually very similar to convolution, which is supported in Matlab, but instead I need to calculate a "key value"…
Dang Manh Truong
  • 795
  • 2
  • 10
  • 35
0
votes
0 answers

Microsoft emotion api video version with javascript

I'm trying to use the Microsoft Emotion API. I can use the image version without any issues but when I try to use the video version I get an empty response. It seems that I can successfully connect with the API because when I give it a wrong file…
0
votes
2 answers

What does "transaction" mean on Azure Cognitive services?

Azure prices for the Face API in Azure Cognitive Services are determined by how many "transactions" were done. Currently it says $1.50 per 1000 transactions. But this a really vague statement. If one uses their services for face detection and…
Lucas
  • 558
  • 11
  • 28
0
votes
1 answer

EmguCV compatible version for VB.NET

I am working on Image processing and i have made an application in c# using EmguCV wrapper version 2.4 beta and now i want to covert it in to vb.Net so which version would be compatible for vb.Net i want to use these dll files. Imports…
0
votes
0 answers

Eigenfaces Comlex number Eigenvalues

When I calculate Covariance (A_Transposed * A) and Calculate the eigenvalues and eigenvectors I always get ONE very small eigenval Here I have 3 images in my training set. -0.0000000242 17221292.9979712702 11732978.3353619855 This first…
Evren Bingøl
  • 1,306
  • 1
  • 20
  • 32
0
votes
1 answer

Sony SmartEyeGlass and face recognition

basic question - Does Sony smarteyeglass support face recognition API through the camera (native or 3rd party)? Thanks
Krypton
  • 233
  • 1
  • 3
  • 8
0
votes
1 answer

How to remove this Error "The method getBufferedImage() is undefined for the type opencv_core.IplImage"

Here is my code. It keeps on showing this message "The method getBufferedImage() is undefined for the type opencv_core.IplImage". How can I get rid of it? Is there any alternative way of getting the buffered image?? If anyone have any idea please…
0
votes
1 answer

FaceRecognizer with one class

I'm trying to use opencv to implement a feature in my app. Basically, my app allows users to authenticate by using their face. Live video will be captured and frames are extracted. Using these extracted images, the model is learned. Next time when a…
lenhhoxung
  • 2,530
  • 2
  • 30
  • 61
0
votes
1 answer

Windows IoT - Raspberry pi

I got a question on does anyone have any idea how would you connect a python code in linux(raspberry pi) and transfer the data collected to update the database in visual studio? In my case would be facial recognition and I would want to send the…