3DiVi Face SDK  3.24.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Groups
Capturer.h
1 #import <Foundation/Foundation.h>
2 #import "RawImage.h"
3 #import "RawSample.h"
4 
16 @interface Capturer : NSObject
17 {
18  void *capturer;
19 }
20 
21 -(nonnull instancetype) init: (void*_Nonnull) cap;
22 -(void) dealloc;
23 
51 -(nonnull NSMutableArray *) capture: (RawImage *_Nonnull) raw_image ;
52 
53 @property void * _Nullable capturer;
54 
55 @end
56 
Interface object for detecting or tracking of faces in the images or video sequences.
Definition: Capturer.h:16
Struct that provides raw image data and optional cropping information.
Definition: RawImage.h:113