Face Detector On Labs

7
Face Detector A labs.ericsson.com enabler http://labs.ericsson.com/apis/face-detector/

description

The Face Detector API provides you as a developer with means of locating faces in an image taken by mobile devices. It provides information of if there are faces in the image or not, how many and where they are positioned. These information can then be used to develop mobile applications that are not only limited to face detector but also required to have face detector as a pre-processing step.

Transcript of Face Detector On Labs

Page 1: Face Detector On Labs

Face Detector

A labs.ericsson.com enablerhttp://labs.ericsson.com/apis/face-detector/

Page 2: Face Detector On Labs

2

Face Detector

A way of locating faces in an image taken by mobile devices.

Develop innovative mobile applications that require face location information as input with the Face Detector Java ME™ components.

Page 3: Face Detector On Labs

3

Why Face Detector?

Mobile devices are equipped with cameras nowadays. They are sources of images.

Demands on automatically obtaining face location info are thus increasing.

Simple API that are developed specifically for mobiles.

Face Detector from Ericsson Labs provides the ability of automatically getting face locations in an image for mobile applications.

Page 4: Face Detector On Labs

4

Main Features of Face Detector

Automatically detect faces and return their locations.

Detected faces can easily be reused for further processing purposes.

Ease of Use.

Page 5: Face Detector On Labs

5

Face Detector Overview

Application

specific code

Face Detector

JavaME Library

Mobile Application

Page 6: Face Detector On Labs

6

// init a FaceDetector

faceDetector = new FaceDetector();

// feeds input image srcImage into faceDetector

faceDetector.setFaceDetector(srcImage);

// sets the user interface for face detection

faceDetector.setDisplayImageUI(this);

// to see if there are faces in the image

faceDetector.detectFace();

// gets result from faceDetector and stores it in a Vector

faceVector = faceDetector.getResult();

Face Detector API

Java ME library that is easily included in any mobile application.

Supports many phones (should work on most devices with Java MIDP 2.0 & CLDC 1.1)

The library provides the functionality of obtaining face location information in an image.

Page 7: Face Detector On Labs

7