Skip to content

CameraViewController that allows to detect smile in real time (AVFoundation and CIFaceFeature). There are additional features like photo sharing (Facebook, Twitter, Instagram). It's also possible to take new selfie by pressing Re-take button.

License

Notifications You must be signed in to change notification settings

TechThings/Smile-Detector-CameraViewController

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Smile-Detector-CameraViewController

CameraViewController that allows to detect smile in real time (AVFoundation and CIFaceFeature). There are additional features like photo sharing (Facebook, Twitter, Instagram). It's also possible to take new selfie by pressing Re-take button.

Project uses AVFoundation Framework.

Application will work only on iOS 7 and higher. ARC is required.

##Usage

To use this view controller simply load it up from AppDelegate:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] ;
    
    SmileCameraViewController *smileCameraViewController = [[SmileCameraViewController alloc]     initWithNibName:@"SmileCameraViewController" bundle:nil];
    self.window.rootViewController = smileCameraViewController;
    [self.window makeKeyAndVisible];
    
    return YES;
}

##Example Screen1

About

CameraViewController that allows to detect smile in real time (AVFoundation and CIFaceFeature). There are additional features like photo sharing (Facebook, Twitter, Instagram). It's also possible to take new selfie by pressing Re-take button.

Resources

License

Stars

Watchers

Forks

Packages

No packages published