MaxstARSDK
MasSurfaceThumbnail.h
Go to the documentation of this file.
1 //
2 // MasSurfaceThumbnail.h
3 // MaxstARSDKFramework
4 //
5 // Created by Kimseunglee on 2017. 12. 10..
6 // Copyright © 2017년 Maxst. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "MasTrackedImage.h"
11 
15 @interface MasSurfaceThumbnail : NSObject
16 
17 - (instancetype)init:(void*)surfaceThumbnail;
18 
23 - (int) getWidth;
24 
29 - (int) getHeight;
30 
35 - (int) getBpp;
36 
41 - (MasColorFormat) getFormat;
42 
47 - (int) getLength;
48 
53 - (unsigned char*) getData;
54 
55 @end
Contains surface thumbnail image information of first keyframe.
Definition: MasSurfaceThumbnail.h:16
int getBpp()
Get thumbnail image bytes per pixel.
int getHeight()
Get thumbnail image height.
MasColorFormat getFormat()
Get thumbnail image bytes per pixel.
int getWidth()
Get thumbnail image width.
unsigned char * getData()
Get thumbnail image data pointer.
int getLength()
Get thumbnail image data length.