Face detection is a computer technology that determines the locations and sizes of human faces in arbitrary (digital) images. It detects facial features and ignores anything else, such as buildings, trees and bodies.

learn more… | top users | synonyms

0
votes
0answers
41 views

run a javacv code in android

I am new to javacv and android.I have run this facedetection code correctly in eclips as java application.I want to run this code in a android application.If you can please consider this issue.Thank ...
0
votes
0answers
73 views

Face Detection & Face Recognition using Opencv with C++

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
1answer
34 views

Search detected faces from a database OpenCV

I am working with this Code: Program sample the above link has been programmed with the help of this page: Servo Magazine This Code can do Extract face, learn face and save the learn face in a ...
1
vote
1answer
179 views

Combining LBP and Adaboost

I want to train a dataset for face detection. I'm gonna use LBP as weak classifiers and Adaboost for boosting them to one strong classifier. I have positive and negative samples. Their size is 18x18 ...
0
votes
0answers
18 views

Facedetector not recognize faces

I have the following code but Facedetector dont recognize faces, any ideas? android.media.FaceDetector.Face[] Faces = new FaceDetector.Face[4]; Bitmap bitmap; BitmapFactory.Options options = new ...
0
votes
0answers
29 views

OpenCV HaarCascade msc rightear

I'm trying to detect an ear, but unfortunately I'm not getting. I think it's a configuration error on cvSetImageROI or cvHaarDetectObjects. Could someone help me? Regards Code: cvSetImageROI( ...
1
vote
0answers
18 views

Android FaceDetector.findFaces 100% CPU Time

I got this simple function private PointF getFaceCenter(Bitmap faceBitmap){ PointF faceCenter = new PointF(faceBitmap.getWidth() / 2, faceBitmap.getHeight() / 2); Face[] faces = new ...
2
votes
1answer
111 views

Using OpenCV detectMultiScale to find my face

I'm pretty sure I have the general theme correct, but I'm not finding any faces. My code reads from c=cv2.VideoCapture(0), i.e. the computer's videocamera. I then have the following set up to yield ...
1
vote
0answers
53 views

Photo booth with props using face detection

i need some help creating a photo booth that allows a user to pick from a number of props that will use a jquery plugin to detected the user's face and superimpose said prop on it after which the user ...
-4
votes
0answers
42 views

What is the best API for Human Anatomy Detection in images? [closed]

I am looking to recognize certain parts of the human anatomy in a relatively clean image environment. I have looked into openCV & Haar Object Detection as they seem to be very viable options, ...
0
votes
0answers
52 views

Haar Object Detection patent issue

I would like to know if all of the Haar Object Detection Api (Python) in OpenCV patent protected? As I understand it SIFT, SURF, & Haar Cascade are patented, but I am not really clear as to what ...
6
votes
2answers
116 views

Face Detection in Android without user interaction

I want to detect the numbers of faces in the front camera frame. I can detect the face once I get the image using this ...
-3
votes
1answer
36 views

OpenCV CascadeClassifier error

i'm trying to do face detection through a webcam, but i got an error, cascadeclassifier error. After do some testing, i found this line of code generate the error CascadeClassifier face_cascade = ...
0
votes
1answer
24 views

Maintaining array order with multiple faces using CIDetector Face Detection - iOS

I want to maintain the order of the NSArray I get back from CIDetector so I can tween the frames I draw in the camera view using an animation block. The problem is the order of faces is often ...
0
votes
0answers
64 views

How to correlate (X,Y) coordinate pairs in one meaningful unit

I have a 2D Array, where each row is a feature vector. Each feature vector is like: [x1 y1 x2 y2 x3 y3 x4 y4] where, (x1,y1) are coordinates of first feature point, (x2, y2) of second feature point ...
0
votes
1answer
59 views

Marking face and eyes on image

I am working on a app that detects face and marks eyes and mouth on image.I have detected the face ,eyes and mouth using CIDetector but the position of eyes and face that it returns is with respect ...
2
votes
1answer
105 views

Java real time facial recognition library [closed]

I'm eagerly on the search for a library (that is Java based or has Java bindings), that can perform real time facial recognition: It should be able to run at 30 frames per second (25 FPS is also ...
0
votes
0answers
146 views

error face detection opencv sample

I use eclipse Juno, with Android SDK ver. 21.1, OpenCV-2.4.4-android-sdk and android-ndk-r8e. When I import the project tutorials of OpenCV in Eclipse, if a Run the sample "Face detection" on my real ...
0
votes
1answer
138 views

Can someone explain about detectMultiScale in openCV

I've been trying objectDetection in openCV.. Followed a few steps.. Resizing it to 64x64 resolution Changing it to gray scale Fetching XML for object detection Drawing rectangle fringing the ...
-1
votes
2answers
73 views

Human detection in android from an image? [closed]

I was wondering if there are some build-in classes or functions that can detect human with the images or the other possibility can be the background subtraction but in both of these options i need a ...
0
votes
0answers
89 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 ...
1
vote
0answers
32 views

track the movement of eyeballs of the user in iphone

I am developing an application where I need to track the movement of eyeballs of the user i.e. whether the user is looking at the top or bottom of an iPhone. I have used FaceDetection in my earlier ...
0
votes
0answers
22 views

cgImage from AVCaptureSession, cutting off eye

I'm getting a CGImage from the AVCaptureSession-buffer and i want to cut out for example the left eye. I tried out a few things but i'm getting really confused with the coordinates. I get the image ...
0
votes
0answers
6 views

Restrict picasa face search folder

For example I have folders named person1 and person2, each folder contains only fotos of same different person and I want Picasa search only for one person per folder. How can it be done?
1
vote
3answers
115 views

Facedetection in iOS

I'm currently working on a project, where i need to detect a face and then take a photo with the camera. (after the camera focused everything correctly). Is something like this possbile in iOS? Are ...
0
votes
0answers
78 views

Face Detection not working on Nexus7 4.2

I'm building an android camera app, and using the FaceDetectionListener. My app has no problems on XperiaZ - LgoptimusBlack- GalaxyNexus4 and some other devices. But with the Google Nexus 7 it gave's ...
0
votes
0answers
63 views

How to merge make PhotoBooth and face detection to work together?

This is probably a really simple solution but I have not been able to figure it out at all, So I'm trying to get PhotoBooth.js and the face detection script seen here Face Detection JavaScript To work ...
0
votes
1answer
294 views

How to save (cvWrite or imwrite) an image in OpenCV 2.4.3

I was trying to save cropped faces as a new image in to the hard drive of my computer. I was reading some tuitorials on how to do it on Android with OpenCV here Android: OpenCV: imwrite always returns ...
0
votes
1answer
139 views

OpenCV 2.4.4 and GPU support for face detection

I am using GPU for faster face detection. I have found an acceptable tutorial here. I am using VC10 compiler along with CUDA 4.2. The device is well installed and devicequery passes the tests. I also ...
0
votes
1answer
259 views

crop and Save ROI as new image in OpenCV 2.4.2 using cv::Mat

Working on Face Detection and Recognition, and after successfully detecting a face, i just want to crop the face and save it somewhere in the drive to give it for the recognition code.I am having hard ...
0
votes
0answers
98 views

OpenCV haartraining - false alarm rate, %SMP, and hit-rate

In the haartraining output, %SMP means "Percentage of original samples left (non-weight-trimmed)" (which I looked up online). Why doesn't it use all of the samples in every stage? And if it's not ...
0
votes
1answer
82 views

face's detected save image, instead of draw image(glasses)

So im attempting to use lulu's CCV JavaScript library and this code example seen here that draws glasses over a detected face: enter link description here But instead of drawing glasses I would like ...
-11
votes
1answer
114 views

Take photo when the camera detects a face [closed]

there is a method to save an image when the camera detects a face? I have just create the faceDetectionListener but i dont know how save the image. Sorry but i post the code before... but is not ...
-1
votes
1answer
94 views

face detection and save image [closed]

I'm working on a project that will use a user's webcam and always be looking for faces when detected and the face is within a certain area (to make sure that they are facing forward). And then take a ...
1
vote
0answers
88 views

Face Detection using OpenCV: How can I get the number of neighbors for each detected face?

I'm using the C++ function void CascadeClassifier::detectMultiScale(const Mat& image, vector& objects, double scaleFactor=1.1, int minNeighbors=3, int flags=0, Size minSize=Size(), Size ...
0
votes
1answer
325 views

How can I update the Android Gallery after a photo?

For the university i've to develop an application on android with the face detections. For this i've to save various photo on my gallery. The problem is that after saving the photo, the gallery do not ...
-4
votes
1answer
82 views

Trainig for emotion detection [closed]

Could anyone please suggest me what algorithms should i use for emotion detection using facial expressions?
0
votes
1answer
283 views

Mood/Emotion Detection (Happy to Sad) using OpenCV

My project is to detect the mood of a person in an image. I want it as a percentage from 0-100; 0 for very sad and 100 for very happy. Can I do it using OpenCV? Should I download any database for ...
1
vote
1answer
143 views

Face detection using opencv

I am using haarcascade_frontalface_default cascade for face detection using Viola Jones Object Detector. Can anyone suggest any other method/xml file to increase the range (unto 20ft) (maximum ...
0
votes
0answers
199 views

Matlab: How does the Face Detection syntax work?

One of my friends gave me this code! It's for face detection.. % Test face detection code %close all; clear; clc; imaqhwinfo workspace info = imaqhwinfo('winvideo',1); ...
0
votes
1answer
410 views

Using Webcam with Android emulator when running OpenCV sample for Face Detection

I was trying to configure Open CV on Android.After following this tutorial ->http://docs.opencv.org/doc/tutorials/introduction/android_binary_package/O4A_SDK.html ...
1
vote
2answers
68 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 ...
1
vote
1answer
67 views

how can i draw square or circle arround eyes and mouth in ciimage iOS

i am new to iOS programming, and i have searched a lot of core image links, answers and tutorials but i still don’t understand exactly. I have a test app who have buttons, easy stuff, i have image ...
0
votes
0answers
82 views

Problems in eye detection due to firmware update

I'm developing a face-detection app on my Samsung Galaxy S3. I used the class FaceDetectionListener to detect faces and eyes and it worked very well on Android 4.0.4. But when I update the firmware ...
0
votes
0answers
61 views

Tracking one face on camera?

This code is returning a lot of faces per frame. I want to obtain only one face per frame, is there any code or way to achieve this? My code is: CvSeq * detectRect_face; detectRect_face = ...
0
votes
1answer
60 views

undeclared identifier error

I wrote this code for face detection on thread, than I will write for eyes,nose,mouth. But there is a mistake which is ---'threadface_func' : undeclared identifier--- I can't find what it is. ...
2
votes
0answers
111 views

Cascade Classifier Method

I want to use the Cascade Classifier Method to compare a found round shape (from the image set where a face has been detected) and a reference circle that I define first so that I can match those two ...
1
vote
2answers
74 views

Convert own haarcascade xml to AS for marilena / flash

my question is: How can I use my "own" haarcascade XML for marilena + flartoolkit? I have been googling like crazy and have stumbled upon this here: ...
0
votes
0answers
110 views

Accuracy of face detection with haarcascade

Recently I am confused by some strange things occur when I do face detection with "haarcascade_frontalface_alt2.xml" Say when detecting my face in the video captured by web camera, although neither ...
1
vote
0answers
218 views

Facial Features Detection and Tracking

I want to detect and track lips and eye corners in a 2D video I have completed the facial features detection in frontal pose, neutral expressions and good light conditions using OpenCV Viola-Jones ...

1 2 3 4 5 7