1

I want to develop an application for iPhone in xcode and integrate face recognition in the application to correspond to other application functions but I do not know how it is possible to use face recognition in my application. Any ideas?

skaffman
  • 398,947
  • 96
  • 818
  • 769
Ralph El Helou
  • 111
  • 1
  • 2
  • 4
  • do you know any third party library yet? openCV is a good try – vodkhang Dec 10 '10 at 13:18
  • possible duplicate of [Realtime Face-tracking on Iphone](http://stackoverflow.com/questions/4323350/realtime-face-tracking-on-iphone) – Brad Larson Dec 10 '10 at 15:32
  • See also [Looking for book or tutorials for implementing face detection in iphone sdk?](http://stackoverflow.com/questions/3829972/looking-for-book-or-tutorials-for-implementing-face-detection-in-iphone-sdk) – Brad Larson Dec 10 '10 at 15:33

3 Answers3

2

Check out this Wikipedia page. It has a lot of references to algorithms, applications, etc.

Claus Broch
  • 9,212
  • 2
  • 29
  • 38
1

Check out OpenCV. Here's a blog post that should help get you started:

http://niw.at/articles/2009/03/14/using-opencv-on-iphone/en

Eric Reid
  • 457
  • 3
  • 10
1

See the Apple published iOS sample code that implements face detection called SquareCam. --

Integrating with CoreImage's new CIFaceDetector to find faces in a real-time VideoDataOutput, as well as in a captured still image. Found faces are indicated with a red square.

Community
  • 1
  • 1
Bobjt
  • 4,040
  • 1
  • 29
  • 29