Maxst AR SDK 4.0.0  4.0.0
MasGuideInfo.h
1 //
2 // MasGuideInfo.h
3 // MaxstARSDKFramework
4 //
5 // Created by Kimseunglee on 2018. 3. 21..
6 // Copyright © 2018년 Maxst. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 @interface MasGuideInfo : NSObject
12 
13 - (instancetype)init:(void*)guideInfo;
14 
19 - (float) getInitializingProgress;
20 
24 - (int) getKeyframeCount;
25 
29 - (int) getFeatureCount;
30 
34 - (float*) getFeatureBuffer;
35 @end
int getFeatureCount()
Definition: MasGuideInfo.mm:37
int getKeyframeCount()
Definition: MasGuideInfo.mm:33
float * getFeatureBuffer()
Definition: MasGuideInfo.mm:41
float getInitializingProgress()
Get a percentage of progress during an initialization step of SLAM.
Definition: MasGuideInfo.mm:29
Definition: MasGuideInfo.h:11