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 has broad use in security technology, social ...

learn more… | top users | synonyms

0
votes
0answers
25 views

C# - Emgu cv Unable to load training set saved in Access 2010 database for recognition using EigenObjectRecognizer

I am trying to load a set of images saved in an Access 2010 database for recognition. The database has one table that saves the rowPosition as number of rows saved, Name of the subject, ID of the ...
1
vote
0answers
21 views

C# - Emgu CV Retireve and display calculated Eigenfaces and Average faces on the GUI(Picture box or image box)

I was trying to study Face Recognition using Emgu CV wrapper in C#.I did the recognition fine.What i just want to know is how i do retrieve the calculated Eigenfaces and Average faces in a picture ...
0
votes
0answers
17 views

Android - Open cv : Errors while Accessing the rows and columns of a vector of Mat image

I was online searching about Face recognition on Andoid and and found this project >>> https://github.com/Ajay191191/Opencv-Face-Recognition I have fixed lots of errors including configurations but ...
3
votes
0answers
50 views

Use Built-in Android Face detection as an input for recognition

Is it possible to use the built-in android face detection as an input for recognition? I was going through some articles online and i have found out that the built-in face detection on Android has ...
0
votes
0answers
75 views

photometric normalisation AAM

I'm trying to implement the active appearance model. I'm at the step where I compute the texture model. I implemented an algorithm for apply a photometric normalisation for each vector texture (like ...
0
votes
0answers
17 views

Overcoming limitation of 2D face recognition in Android

About face recognition in Android, there will be several limitations such as: when you wear glasses or not? when it gets darker or lighter? when someone else using our image to fake us? I did ...
-2
votes
0answers
206 views

Face Detection & Face Recognition using Opencv with C++ [closed]

My Project is to write a Program that recognize faces with Video Camera and compare the recognized Face if the recognized face in database. If it not in Database send Email. I read in google the face ...
0
votes
0answers
22 views

photo upload validation - facial recognition

Does anybody know of a script that can validate an image upon uploading? I require it to detect a face within the picture? I am guessing this would have to be a java based script? Cheers, Dan
0
votes
0answers
85 views

Best Algorithm for face recognition [closed]

I am working on an android app using opencv for face recognition. On studying the library, I have found the following algorithms for face recognition: Eigenfaces Fisherfaces Local Binary Patterns ...
1
vote
3answers
87 views

CIDetector give wrong position on facial features

Now i know that the coordinate system is messed up. I have tried reversing the view and imageView, nothing. I then tried to reverse the coordinates on the features and i still get the same problem. I ...
0
votes
0answers
415 views

Face Recognition code using emgu cv and C# and it returns a black image and unknown/unrecognized label all time

I was working on Face Recognition project. After training the database and calling EigenObjectRecognizer, the result is a black image with unrecognized label.When the code runs, it looks like the ...
0
votes
1answer
599 views

C# - Emgu CV - Face Recognition code stops execution at EigenObjectRecognizer and exit without error

I was working on Face Recognition and when i run the code it stops execution at the point where EigenObjectRecognizer is initialized and exits the program with out any error.Have any one else faced ...
3
votes
2answers
126 views

How to find the best match using surf opencv using c++

Im using Opencv C++, in VS201o for a face recognition application. For that i used SURF, BruteForceMatcher. BFMatcher matcher; vector< DMatch > matches; //match: execute the matcher! ...
0
votes
0answers
189 views

C# - Emgu Cv - Face Recognition- Loading training sets of Faces saved to Access database as a binary in to EigenObjectRecognizer for Face recognition

I was having a hard time loading training set from Ms Access database in to the main form that does the Face Recognition. I saved the training sets with their names and ID in to the database as a ...
0
votes
0answers
71 views

How to get PCA and save it to Ms Access Database for Face Recognition using Emgu CV and C#

I was wondering if someone could tell me how i save PCA of Faces of Training set to my Access database. I am doing my recognition by saving the image in binary to the database. When i read it from ...
2
votes
1answer
193 views

EmguCV - Face Recognition - 'Object reference not set' exception when using training set from Microsoft Access Database

I've been developing a face recognition application using EmguCV (C#). I got the whole thing working okay if I store the face images (training set) in simple windows folder. But, after I tried to ...
0
votes
1answer
212 views

Facerecognizer with opencv 2.4.5

I am working o the face recognition example at : http://docs.opencv.org/trunk/modules/contrib/doc/facerec/tutorial/facerec_video_recognition.html. I am using eclipse on ubuntu if thats relevant. ...
1
vote
1answer
137 views

Face Recognition - How to return the correct image?

I am trying to make hand gesture recognition (similar to face recognition) using Principal Component Analysis(PCA) in python. I have a Test image and I want to get its nearest match from a set of ...
0
votes
1answer
129 views

Can we do the Microsoft Kinect face tracking with two webcams instead of kinect 3d sensor?

I'm trying to do a face tracking project, so I came to see the microsoft kinect face tracking ,but I don't have a kinect camera,Is it possible to use two webcameras instead of kinect camera.
0
votes
1answer
164 views

Emgu.CV.CvInvoke Error on Face Recognition code using Emgucv C#

I was trying to run the codes i have got from codeproject http://www.codeproject.com/Articles/239849/Multiple-face-detection-and-recognition-in-real-ti .The code build fine but during runtime that it ...
0
votes
1answer
54 views

face recognition feature in a facebook app

I'm starting to build an app for Facebook and I want to use face recognition feature in it. Is there a way to use the face recognition feature that FB introduced last year or do I have to turn for ...
1
vote
1answer
78 views

Can I use openCV libraries with Catapult C?

My final aim is a face/object detection and general image processing application on a Altera DE2 FPGA. I am using Catapult C to program the FPGA (so I am using C code, not Verilog or VHDL). My ...
0
votes
1answer
58 views

Formatting images for LBP face Recognizer

I am working on a surveillance project which needs to recognize humans. Currently I have created a interface for collecting the facial data using the LBP face detector. This is what I do in the ...
0
votes
1answer
170 views

OpenCV in python. Ask: Recognize my face and put my name. Like a database

I have a code in python to recognize my face, but now I want to recognize my face and put my name, as stored in a database. My question is, how to do it in python? anyone have any example? This is ...
0
votes
0answers
63 views

How to recognize face programatically in iPhone?

Right now I am working on an app. In this app I want to add a new feature. In this app you can log in by your face recognition means if registered User's face verified then he can log in otherwise no. ...
0
votes
1answer
68 views

How to create a training example from an RGB image in Matlab?

I have RGB face images of size 60x60. They are matrices of size 60x60x3 in Matlab. I need to apply some algorithms to these data. But first I need to create training examples for the images. Given ...
1
vote
2answers
137 views

How to display RGB images in Matlab, where each channel is separate matrix?

I was given a dataset with human faces in Matlab format, but I don't know how to display the images, after I have imported the dataset in Matlab. The size of the matrix is 60x60x3x1000, which means, ...
2
votes
0answers
86 views

Android: Blink recognition

Does anyone know how to recognize an eye blink in android? With any framework or library? I found different algorithms for face detection, distance between the eyes and etc, but almost nothing about ...
4
votes
1answer
217 views

Face recognition - Python

I am trying to make face recognition by Principal Component Analysis (PCA) using python. Now I am able to get the minimum euclidean distance between the training images images and the input image ...
-1
votes
1answer
73 views

class PCA matplotlib for face recognition

I am trying to make face recognition by Principal Component Analysis (PCA) using python. I am using class pca found in matplotlib. Here is it's documentation: class matplotlib.mlab.PCA(a) ...
2
votes
2answers
83 views

Error - Calculating Euclidean distance for PCA in python

I am trying to implement face recognition by Principal Component Analysis (PCA) using python. I am following the steps in this tutorial: ...
2
votes
1answer
111 views

Principal Component Analysis (PCA) using python

I am trying to implement face recognition by Principal Component Analysis (PCA) using python. I am following the steps in this tutorial: ...
1
vote
2answers
311 views

Python - ValueError: operands could not be broadcast together with shapes

I am trying to implement face recognition by Principal Component Analysis (PCA) using python. One of the steps is to normalize the input (test) image T by subtracting the average face vector m: n = T ...
2
votes
0answers
707 views

PCA using princomp in MATLAB (for face recognition)

I'm trying to do dimensionality reduction using MATLAB's princomp, but I'm not sure I'm doing it right. Here is the my code just for testing, but I'm not sure that I'm doing projection right: A = ...
-3
votes
1answer
244 views

Unhandled exception at 0x00cd2e34 in Detect.exe: 0xC0000005: Access violation reading location 0x00000000

I'm trying to train 7 text files which will generate 7 xml files as the output. Hence i tried through a "for loop" which will function 7 times. I have referred the following link for face ...
0
votes
1answer
259 views

Python error - ValueError: need more than 1 value to unpack

I am trying to make face recognition by Principal component analysis (PCA) using python (matplotlib). I am trying to do it as described in this image: Here is my code: import os from PIL import ...
0
votes
1answer
83 views

How to use class PCA from matplotlib for face recognition?

I am trying to build a code for face recognition using python. Now I am able to put all my database images into one two-dimensional array to be able to apply Principal component analysis (PCA) on ...
0
votes
2answers
120 views

Principal component analysis (PCA) compute mean using python

I am a beginner to python and I am implementing Principal component analysis (PCA) using python, but I am having a problem computing the mean. Here is my code: import Image import os from PIL import ...
0
votes
0answers
34 views

Tutorial explaining Principle Component Analysis (PCA) using python [duplicate]

I need a tutorial that would help to implement Principle Component Analysis (PCA) using Python.
1
vote
1answer
44 views

Principle Component Analysis (PCA) using python tutorial

Does any body have a tutorial for Principle Component Analysis (PCA) using python including code and explanation?
0
votes
2answers
70 views

Principle Component Analysis (PCA) - accessing shape

I am a beginner in python and I am trying to apply Principle Component Analysis (PCA) to a set of images. I want to put the images in a matrix to be able to perform PCA. I am still at the beginning ...
0
votes
0answers
15 views

Angle of a face with a camera in a Photo

i need to find the angle that a face has relating to a photographic camera on a photo. Could you give me some help? Thank you
0
votes
0answers
29 views

CIDetector stalls when running on iPhone4 or iPhone 5

Background: I have been developing a universal app that does many things including localizing a face from an image. I started building the app from the iPad perspective and everything works perfectly ...
0
votes
1answer
49 views

Python - How to read a set of images and put it in a matrix? [closed]

I need to read a set of images in python using and put it into a matrix to be able to preform PCA (principle component analysis). All the images are in one folder.
0
votes
2answers
113 views

Face Recognition in Chrome extension

I want to create a Chrome browser extension which would be using Face Recognition algorithms to customize personal bookmarks, passwords and themes. Is there any possibility to use different ...
1
vote
2answers
82 views

face tracking or “dynamic recognition”

What is a best approach for face detection/tracking considering following scenario: when person enters in scene/frame it should be detected and recognized in every next frame until he/she leaves the ...
0
votes
1answer
49 views

Recognizing a face in a set of images

I am currently searching for a way to search in a set of images for a face which is present on an image I give as a starting point. The basic idea behind it is that I have a folder of images e.g. ...
0
votes
1answer
99 views

Real time image processing

I am working on a project that requires me to recognize faces using a camera connected to an embedded board. This board must use linux platform and perform real time image processing in opencv. I will ...
0
votes
0answers
111 views

Gathering the confidence with JAVACV program

Trying to figure out a way to gather the confidence level when it actually does the face recognizing on the target image. I have searched through a few examples but haven't found anything I can see ...
2
votes
2answers
1k views

Face recognition using android sdk not opencv

I am currently work on face recognition in android. I spent reasonable time on internet and I found FaceDetector.Face class in Android. And these are the utilities of this class: Constants float ...

1 2 3 4 5 6