3DiVi Face SDK  3.24.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Groups
ProcessingBlock.h
1 #import <Foundation/Foundation.h>
2 #import <Context.h>
3 
16 @interface ProcessingBlock : NSObject
17 {
18  void *ptr;
19 }
20 -(nonnull instancetype) init: (void* _Nonnull) pb;
21 -(void) dealloc;
22 
33 -(void) process: (Context* _Nonnull) data;
34 
35 
36 @end
37 
38 
Interface object used to work with estimators from Processing Block API.
Definition: ProcessingBlock.h:16
Context is an interface object for storing data and interacting with methods from the Processing Bloc...
Definition: Context.h:65