1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
Source-SnapChatCamera/ManagedCapturer/SCCaptureFaceDetector.h
2018-08-08 02:27:52 +03:00

32 lines
771 B
Objective-C

//
// SCCaptureFaceDetector.h
// Snapchat
//
// Created by Jiyang Zhu on 3/27/18.
// Copyright © 2018 Snapchat, Inc. All rights reserved.
//
// This protocol declares properties and methods that are used for face detectors.
#import <Foundation/Foundation.h>
@class SCCaptureResource;
@class SCQueuePerformer;
@class SCCaptureFaceDetectorTrigger;
@class SCCaptureFaceDetectionParser;
@protocol SCCaptureFaceDetector <NSObject>
@property (nonatomic, strong, readonly) SCCaptureFaceDetectorTrigger *trigger;
@property (nonatomic, strong, readonly) SCCaptureFaceDetectionParser *parser;
- (instancetype)initWithCaptureResource:(SCCaptureResource *)captureResource;
- (SCQueuePerformer *)detectionPerformer;
- (void)startDetection;
- (void)stopDetection;
@end