mirror of
https://github.com/status-im/react-native-camera.git
synced 2025-02-24 17:58:20 +00:00
18 lines
512 B
C
18 lines
512 B
C
|
//
|
||
|
// RNFaceDetectorPointTransformCalculator.h
|
||
|
// RCTCamera
|
||
|
//
|
||
|
// Created by Joao Guilherme Daros Fidelis on 21/01/18.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import <AVFoundation/AVFoundation.h>
|
||
|
|
||
|
@interface RNFaceDetectorPointTransformCalculator : NSObject
|
||
|
|
||
|
- (instancetype)initToTransformFromOrientation:(AVCaptureVideoOrientation)orientation toOrientation:(AVCaptureVideoOrientation)toOrientation forVideoWidth:(CGFloat)videoWidth andVideoHeight:(CGFloat)videoHeight;
|
||
|
|
||
|
- (CGAffineTransform)transform;
|
||
|
|
||
|
@end
|