MaxstARSDK
MasGuideInfo.h
Go to the documentation of this file.
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 #import "MasTagAnchor.h"
11 
12 @interface MasGuideInfo : NSObject
13 
14 - (instancetype)init:(void *)guideInfo;
15 
21 
26 - (int)getKeyframeCount;
27 
33 
37 - (float *)getGuideFeatureBuffer;
38 
43 - (float *)getBoundingBox;
44 
49 - (NSMutableArray<MasTagAnchor *> *)getTagAnchors;
50 
55 - (int)getTagAnchorCount;
56 
61 - (int)getTagAnchorsId;
62 @end
Definition: MasGuideInfo.h:13
int getGuideFeatureCount()
Get the number of features for guide.
float * getGuideFeatureBuffer()
float getInitializingProgress()
Get a percentage of progress during an initialization step of SLAM.
int getTagAnchorsId()
Get anchors Id.
float * getBoundingBox()
Get a bounding box of a scanned object.
int getKeyframeCount()
Get keyframe count.
int getTagAnchorCount()
Get number of anchors.
NSMutableArray< MasTagAnchor * > * getTagAnchors()
Get Anchors of a scanned object.
Definition: MasTagAnchor.h:13