Banuba SDK
BNBNeuroBeautyOutput.h
Go to the documentation of this file.
1 // AUTOGENERATED FILE - DO NOT MODIFY!
2 // This file was generated by Djinni from neuro_beauty.djinni
3 
4 #import <Foundation/Foundation.h>
5 
6 /** Tuple with neuro_beauty output. */
7 
8 #ifndef DJINNI_EXPORT
9  #define DJINNI_EXPORT __attribute__((__visibility__("default")))
10 #endif
11 
13 @interface BNBNeuroBeautyOutput : NSObject
14 - (nonnull instancetype)initWithWidth:(int32_t)width
15  height:(int32_t)height
16  channels:(int32_t)channels
17  image:(nonnull NSData *)image;
18 + (nonnull instancetype)neuroBeautyOutputWithWidth:(int32_t)width
19  height:(int32_t)height
20  channels:(int32_t)channels
21  image:(nonnull NSData *)image;
22 
23 @property (nonatomic, readonly) int32_t width;
24 
25 @property (nonatomic, readonly) int32_t height;
26 
27 @property (nonatomic, readonly) int32_t channels;
28 
29 @property (nonatomic, readonly, nonnull) NSData * image;
30 
31 @end
BNBNeuroBeautyOutput::image
NSData * image
Definition: BNBNeuroBeautyOutput.h:29
BNBNeuroBeautyOutput
Definition: BNBNeuroBeautyOutput.h:13
BNBNeuroBeautyOutput::height
int32_t height
Definition: BNBNeuroBeautyOutput.h:25
DJINNI_EXPORT
#define DJINNI_EXPORT
Tuple with neuro_beauty output.
Definition: BNBNeuroBeautyOutput.h:9
BNBNeuroBeautyOutput::width
int32_t width
Definition: BNBNeuroBeautyOutput.h:23
BNBNeuroBeautyOutput::channels
int32_t channels
Definition: BNBNeuroBeautyOutput.h:27