20 lines
401 B
Objective-C
20 lines
401 B
Objective-C
//
|
|
// RNFaceEncoder.h
|
|
// RCTCamera
|
|
//
|
|
// Created by Joao Guilherme Daros Fidelis on 21/01/18.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#if __has_include(<GoogleMobileVision/GoogleMobileVision.h>)
|
|
#import <GoogleMobileVision/GoogleMobileVision.h>
|
|
|
|
@interface RNFaceEncoder : NSObject
|
|
|
|
- (instancetype)initWithTransform:(CGAffineTransform)transform;
|
|
|
|
- (NSDictionary *)encode:(GMVFaceFeature *)face;
|
|
|
|
@end
|
|
#endif
|