9#ifndef FaceShapeAnalyzerHTML_h
10#define FaceShapeAnalyzerHTML_h
11#import "FaceTracker.h"
13@interface FaceShapeEstimates : NSObject
14 @property(nonatomic, readonly)
float Heart;
16 @property(nonatomic, readonly)
float Oblong;
18 @property(nonatomic, readonly)
float Oval;
20 @property(nonatomic, readonly)
float Round;
22 @property(nonatomic, readonly)
float Square;
24-(id) initWithHeart:(
float) heart andOblong:(
float) oblong andOval:(
float) oval andRound:(
float) round andSquare:(
float) square;
27@interface FaceShapeResult : NSObject
31 @property(nonatomic, readonly) FaceShapeEstimates* estimates;
36 @property(nonatomic, readonly)
long frameIndex;
38-(id) initWithEstimates:(FaceShapeEstimates*) estimates andFrameIndex:(
long) frameIndex;
53- (void) StartAnalysis:(
void(^)(FaceShapeResult *))callback;
65- (id)initWithFaceShapeModule:(
void*) faceShapeModule;
Definition FaceShapeAnalyzer.h:46