Banuba SDK
BNBAnalyticsConfig.h
Go to the documentation of this file.
1 // AUTOGENERATED FILE - DO NOT MODIFY!
2 // This file generated by Djinni from effect_player.djinni
3 
4 #import <Foundation/Foundation.h>
5 
6 /**internal */
7 @interface BNBAnalyticsConfig : NSObject
8 - (nonnull instancetype)initWithFramesCount:(int32_t)framesCount
9  delayForRecordWithFace:(int32_t)delayForRecordWithFace
10  outputPath:(nonnull NSString *)outputPath;
11 + (nonnull instancetype)analyticsConfigWithFramesCount:(int32_t)framesCount
12  delayForRecordWithFace:(int32_t)delayForRecordWithFace
13  outputPath:(nonnull NSString *)outputPath;
14 
15 /** Number of frames to record when face was found */
16 @property (nonatomic, readonly) int32_t framesCount;
17 
18 /** Number of frames to skip before record start */
19 @property (nonatomic, readonly) int32_t delayForRecordWithFace;
20 
21 /** Path to folder for results storing */
22 @property (nonatomic, readonly, nonnull) NSString * outputPath;
23 
24 @end
BNBAnalyticsConfig::delayForRecordWithFace
int32_t delayForRecordWithFace
Number of frames to skip before record start.
Definition: BNBAnalyticsConfig.h:19
BNBAnalyticsConfig
internal
Definition: BNBAnalyticsConfig.h:8
BNBAnalyticsConfig::framesCount
int32_t framesCount
Number of frames to record when face was found.
Definition: BNBAnalyticsConfig.h:16
BNBAnalyticsConfig::outputPath
NSString * outputPath
Path to folder for results storing.
Definition: BNBAnalyticsConfig.h:22