Tagged Questions

16
votes
4answers
14k views

Face detection in java

Can anyone recommend a decent java library for face detection (recognition not required, just detection). The library would preferably be pure java (e.g. no dependencies on other native libs, DLLs or ...
8
votes
4answers
2k views

Face-tracking libraries for Java or Python

I'm looking for a way to identify faces (not specific people, just where the faces are) and track them as they move across a room. We're trying to measure walking speed for people, and I assumed ...
2
votes
1answer
108 views

Face Detection in J2ME

This is my first time on stackoverflow asking questions so I will try my best to describe what I want to the best of my ability. I am doing a mobile application that involves taking a picture and ...
2
votes
2answers
400 views

Matching two images

How can we match two images using Java. I want to make a face recognition application, that will store face of people at some location and then later will check whether a person is a member or not. If ...
1
vote
1answer
496 views

Detecting and cropping a face from an picture?

I am working on a Face Recognition system for my internship. I am developing the project in Java right now. I am using OpenCV library, but it does not seem to work correctly in detecting faces. I am ...
1
vote
3answers
3k views

OpenCV to JNI how to make it work?

I am tring to use opencv and java for face detection, and in that pursit i found this "JNI2OPENCV" file....but i am confused on how to make it work, can anyone help me? ...
0
votes
0answers
37 views

How to detect faces with jviolajones library?

I'm trying count faces in the picture with jviolajones library. I want to do this in pure Java with no extra dependencies so OpenCV is not an option. My code is like: detector.getFaces("filePath", ...
0
votes
3answers
132 views

Locate Lips on a Face in Android

I have a need to detect face in a photo. Generally the face will be covering 60% of the photo. Once face is detected I have to highlight the lips of the photo with a per-defined color which is Black. ...
0
votes
0answers
495 views

How do i do a Face Detection?

i am new to this android stuff..and i would like to ask how do i make a face detection.. can anyone tell me how to? TestCameraOverlay.java package com.yang.net; import java.io.IOException; ...
0
votes
1answer
365 views

Java Face Recognition Advices

I am supposed to compare two pictures whether they belong same person or not. I have not worked on face recognition in Java, so could anyone suggest me an example code or an article to do this?
0
votes
0answers
349 views

Create graphics over facedetection layer for android [closed]

i am new to android and i would like to create graphic/bitmap as a overlay on the live output of the camera preview which runs facedetection on android. I tried to create a surfaceview and create ...
0
votes
1answer
273 views

FaceDetection Bounding Box questions

I have developed a face-detection android application which is able to detect faces and draw a bounding box around the person's face when the face is being detected. But for now I was wondering if it ...