Banuba SDK
BNBDepthMap.h
Go to the documentation of this file.
1 // AUTOGENERATED FILE - DO NOT MODIFY!
2 // This file was generated by Djinni from types.djinni
3 
4 #import <Foundation/Foundation.h>
5 
6 /** Results from depth camera */
7 
8 #ifndef DJINNI_EXPORT
9  #define DJINNI_EXPORT __attribute__((__visibility__("default")))
10 #endif
11 
13 @interface BNBDepthMap : NSObject
14 - (nonnull instancetype)initWithDepthData:(nonnull NSData *)depthData
15  depthMapWidth:(int32_t)depthMapWidth
16  depthMapHeight:(int32_t)depthMapHeight;
17 + (nonnull instancetype)depthMapWithDepthData:(nonnull NSData *)depthData
18  depthMapWidth:(int32_t)depthMapWidth
19  depthMapHeight:(int32_t)depthMapHeight;
20 
21 @property (nonatomic, readonly, nonnull) NSData * depthData;
22 
23 @property (nonatomic, readonly) int32_t depthMapWidth;
24 
25 @property (nonatomic, readonly) int32_t depthMapHeight;
26 
27 @end
BNBDepthMap
Definition: BNBDepthMap.h:13
DJINNI_EXPORT
#define DJINNI_EXPORT
Results from depth camera.
Definition: BNBDepthMap.h:9
BNBDepthMap::depthData
NSData * depthData
Definition: BNBDepthMap.h:21
BNBDepthMap::depthMapHeight
int32_t depthMapHeight
Definition: BNBDepthMap.h:25
BNBDepthMap::depthMapWidth
int32_t depthMapWidth
Definition: BNBDepthMap.h:23