9#ifndef BeautyFaceData_h
10#define BeautyFaceData_h
11#import "CamIL_Image.h"
15@interface BeautyFaceData : NSObject{
19typedef NS_ENUM(NSUInteger, TRACK_STATUS) {
26- (id)initWithData:(
void const*) data;
28- (TRACK_STATUS) GetStatus;
29- (
long int) GetFrameIndex;
31- (float) GetHasMaskProbability;
32- (float) GetTrackingQuality;
33- (float) GetTrackingQualityBdts;
34- (float) GetFrameRate;
36- (
Vector3) GetFaceTranslationCompensated;
38- (
Vector3) GetFaceRotationApparent;
40- (
Vector3) GetGazeDirectionGlobal;
43- (BeautyFDP *) GetFeaturePoints3D;
44- (BeautyFDP *) GetFeaturePoints3DRelative;
45- (BeautyFDP *) GetFeaturePoints2D;
46- (int) GetFaceModelVertexCount;
47- (
float const* ) GetFaceModelVertices;
48- (
float const*) GetFaceModelVerticesProjected;
49- (int) GetFaceModelTriangleCount;
50- (
int const* ) GetFaceModelTriangles;
51- (
float const*) GetFaceModelTextureCoords;
52- (
float const*) GetFaceModelTextureCoordsStatic;
54- (float) GetCameraFocus;
55- (bool) IsDataInitialized;
Represents an image retrieved from the camera.
Definition CamIL_Image.h:32
Representation of a 2D mathematical vector with members x and y.
Definition Utility.h:25
Representation of a 3D mathematical vector with members x, y and z;.
Definition Utility.h:16