CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.

DSFacialGestureDetector 0.0.1

DSFacialGestureDetector 0.0.1

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2014

Maintained by Danny Shmueli.



In iOS7 Apple introduced new face features detection to the CIDetecor.

CIDetectorEyeBlink, CIDetectorSmile

Ever since i was wondering if i could "feed" it streaming video and maybe make NEW kind of gestures- facial gestures.

This is a basic version of it:

ScreenShot

Installing:

Using cocoapods: (coming soon)

pod install 'DSFacialGestures'

or import all the files under the Detector directory to your project.

Using:

In your view controler:

  1. implement: <DSFacialDetectorDelegate>
  2. init:
self.facialGesturesDetector = [DSFacialGesturesDetector new];
self.facialGesturesDetector.delegate = self;
self.facialGesturesDetector.cameraPreviewView = self.cameraPreview;
NSError *error;
[self.facialGesturesDetector startDetection:&error];

See also example project.