MeiCam SDK For iOS  3.7.2
All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
NvsFaceFeaturePoint.h
Go to the documentation of this file.
1 //================================================================================
2 //
3 // (c) Copyright China Digital Video (Beijing) Limited, 2016. All rights reserved.
4 //
5 // This code and information is provided "as is" without warranty of any kind,
6 // either expressed or implied, including but not limited to the implied
7 // warranties of merchantability and/or fitness for a particular purpose.
8 //
9 //--------------------------------------------------------------------------------
10 // Birth Date: Sep 7. 2019
11 // Author: NewAuto video team
12 //================================================================================
13 
14 #pragma once
15 
16 #import <Foundation/Foundation.h>
17 #import "NvsEffectCommonDef.h"
18 #import "NvsArbitraryData.h"
19 
26 NVS_EXPORT @interface NvsFaceInfo : NSObject
27 
28 @property (nonatomic, assign) int faceId;
29 @property (nonatomic, strong) NSMutableArray *pointsArray;
30 @property (nonatomic, strong) NSMutableArray *visibilityArray;
31 
32 @end
33 
41 
42 @property (nonatomic, strong) NSMutableArray *faces;
43 @property (nonatomic, assign) int faceCount;
44 
45 - (instancetype)initWithCapacity:(int)capacity;
46 
47 @end
NvsFaceFeaturePoint
2D feature point structure.
Definition: NvsFaceFeaturePoint.h:41
NvsFaceInfo::faceId
int faceId
Face ID.
Definition: NvsFaceFeaturePoint.h:28
NvsArbitraryData.h
NvsFaceInfo::visibilityArray
NSMutableArray * visibilityArray
Whether the corresponding point is occluded. If it is not occluded, it shows 1.0. 0....
Definition: NvsFaceFeaturePoint.h:30
NvsFaceInfo
FaceInfo for 106 points.
Definition: NvsFaceFeaturePoint.h:27
NVS_EXPORT
#define NVS_EXPORT
Definition: NvsCommonDef.h:20
NvsFaceInfo::pointsArray
NSMutableArray * pointsArray
An array of 106 key points of the face.
Definition: NvsFaceFeaturePoint.h:29
NvsEffectCommonDef.h
NvsArbitraryData
A custom parameter structure for video effects.
Definition: NvsArbitraryData.h:29