yeet
This commit is contained in:
20
node_modules/unimodules-face-detector-interface/ios/UMFaceDetectorInterface/UMFaceDetectorManager.h
generated
vendored
Normal file
20
node_modules/unimodules-face-detector-interface/ios/UMFaceDetectorInterface/UMFaceDetectorManager.h
generated
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
// Copyright © 2018 650 Industries. All rights reserved.
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <AVFoundation/AVFoundation.h>
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@protocol UMFaceDetectorManager
|
||||
|
||||
- (void)setSessionQueue:(dispatch_queue_t)sessionQueue;
|
||||
- (void)setIsEnabled:(BOOL)enabled;
|
||||
- (void)setOnFacesDetected:(void (^)(NSArray<NSDictionary *> *))onFacesDetected;
|
||||
|
||||
- (void)updateSettings:(NSDictionary *)settings;
|
||||
- (void)updateMirrored:(BOOL) mirrored;
|
||||
|
||||
- (void)maybeStartFaceDetectionOnSession:(AVCaptureSession *)session withPreviewLayer:(AVCaptureVideoPreviewLayer *)previewLayer;
|
||||
- (void)maybeStartFaceDetectionOnSession:(AVCaptureSession *)session withPreviewLayer:(AVCaptureVideoPreviewLayer *)previewLayer mirrored:(BOOL) mirrored;
|
||||
- (void)stopFaceDetection;
|
||||
|
||||
@end
|
9
node_modules/unimodules-face-detector-interface/ios/UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h
generated
vendored
Normal file
9
node_modules/unimodules-face-detector-interface/ios/UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
// Copyright © 2018 650 Industries. All rights reserved.
|
||||
|
||||
#import <UMFaceDetectorInterface/UMFaceDetectorManager.h>
|
||||
|
||||
@protocol UMFaceDetectorManagerProvider
|
||||
|
||||
- (id<UMFaceDetectorManager>)createFaceDetectorManager;
|
||||
|
||||
@end
|
Reference in New Issue
Block a user