mirror of
https://github.com/status-im/react-native-camera.git
synced 2025-02-24 17:58:20 +00:00
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
|