makeup|SDK
makeup|SDK is a library based on visage|SDK face tracking used to configure and render virtual makeup.
Loading...
Searching...
No Matches
BeautyFDP.h
1//
2// BeautyFDP.h
3// MakeUpSDK
4//
5// Created by Visage on 16.10.2023..
6// Copyright © 2023 Visage Technologies AB. All rights reserved.
7//
8
9#ifndef BeautyFDP_h
10#define BeautyFDP_h
11
12#import "Utility.h"
13
14@interface BeautyFDP : NSObject{
15 void* data;
16}
17
18- (id)initWithData:(void*) data;
19
20-(void) Reset;;
21-(Vector3) GetPosInGroup:(int)group andIndex:(int) index;
22-(Vector3) GetPosFromName:(const char *) name;
23-(float) GetQualityInGroup:(int)group andIndex:(int) index;
24-(float) GetQualityFromName:(const char *) name;
25-(bool) IsDefinedInGroup:(int)group andIndex:(int) index;
26-(bool) IsDefinedFromName:(const char *) name;
27-(bool) IsDetectedInGroup:(int)group andIndex:(int) index;
28-(bool) IsDetectedFromName:(const char *) name;
29-(bool) IsNormalized;
30-(bool) IsInitialized;
31-(int) FP_START_GROUP_INDEX;
32-(int) FP_END_GROUP_INDEX;
33-(int) FP_NUMBER_OF_GROUPS;
34-(NSString *) GetFPNameInGroup:(int)group andIndex:(int) index;
35-(bool) FPIsValidInGroup:(int)group andIndex:(int) index;
36-(bool) FPIsValidFromName:(const char *) name;
37-(int) GroupSizeFromGroup:(int) group;
38-(int) GetMirrorPointIndexInGroup:(int)group andIndex:(int) index;
39
40@end
41
42#endif /* BeautyFDP_h */
Representation of a 3D mathematical vector with members x, y and z;.
Definition Utility.h:16