Banuba SDK
|
#import <BNBProcessorConfiguration.h>
Instance Methods | |
(void) | - setUseFutureFilter: |
Use future frame to filter prediction, improves anti-jitter, adds processed frame inconsistency Example: push frame 1 - pop frame 1, push frame 2 - pop frame 1, push frame 3 - pop frame 2, ... More... | |
(void) | - setUseFutureInterpolate: |
Use future frame to interpolate prediction, improves performance, adds processed frame inconsistency Example: push frame 1 - pop frame 1, push frame 2 - pop frame 1, push frame 3 - pop frame 2, ... More... | |
(void) | - setUseOfflineMode: |
Use offline NN's for processing, improces accuracy in exchange to performance Cannot be used together with other configurations Default: false. More... | |
Class Methods | |
(nullable BNBProcessorConfiguration *) | + create |
Create with default params. More... | |
Definition at line 14 of file BNBProcessorConfiguration.h.
+ (nullable BNBProcessorConfiguration *) create |
Create with default params.
- (void) setUseFutureFilter: | (BOOL) | value |
Use future frame to filter prediction, improves anti-jitter, adds processed frame inconsistency Example: push frame 1 - pop frame 1, push frame 2 - pop frame 1, push frame 3 - pop frame 2, ...
Cannot be used together with other configurations Default: true
- (void) setUseFutureInterpolate: | (BOOL) | value |
Use future frame to interpolate prediction, improves performance, adds processed frame inconsistency Example: push frame 1 - pop frame 1, push frame 2 - pop frame 1, push frame 3 - pop frame 2, ...
Cannot be used together with other configurations Default: false
- (void) setUseOfflineMode: | (BOOL) | value |
Use offline NN's for processing, improces accuracy in exchange to performance Cannot be used together with other configurations Default: false.