9#ifndef EyeShapeAnalyzerHTML_h
10#define EyeShapeAnalyzerHTML_h
11#import "FaceTracker.h"
13@interface EyeShapeEstimates : NSObject
14 @property(nonatomic, readonly)
float Almond;
16 @property(nonatomic, readonly)
float Hooded;
18 @property(nonatomic, readonly)
float Monolid;
20 @property(nonatomic, readonly)
float Round;
22-(id) initWithAlmond:(
float) almond andHooded:(
float) hooded andMonolid:(
float) monolid andRound:(
float) round;
25@interface EyeShapeResult : NSObject
29 @property(nonatomic, readonly) EyeShapeEstimates* estimates;
34 @property(nonatomic, readonly)
long frameIndex;
36-(id) initWithEstimates:(EyeShapeEstimates*) estimates andFrameIndex:(
long) frameIndex;
51- (void) StartAnalysis:(
void(^)(EyeShapeResult *))callback;
63- (id)initWithEyeShapeModule:(
void*) eyeShapeModule;
Definition EyeShapeAnalyzer.h:44