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/SCManagedCaptureDeviceFaceDetectionAutoFocusHandler.h
2018-08-08 02:27:52 +03:00

29 lines
831 B
Objective-C

//
// SCManagedCaptureDeviceFaceDetectionAutoFocusHandler.h
// Snapchat
//
// Created by Jiyang Zhu on 3/7/18.
// Copyright © 2018 Snapchat, Inc. All rights reserved.
//
// This class is used to
// 1. adjust focus related parameters of camera, including focus mode and focus point.
// 2. receive detected face bounds, and focus to a preferred face if needed.
#import "SCManagedCaptureDeviceFocusHandler.h"
#import <SCBase/SCMacros.h>
#import <AVFoundation/AVFoundation.h>
@protocol SCCapturer;
@interface SCManagedCaptureDeviceFaceDetectionAutoFocusHandler : NSObject <SCManagedCaptureDeviceFocusHandler>
SC_INIT_AND_NEW_UNAVAILABLE
- (instancetype)initWithDevice:(AVCaptureDevice *)device
pointOfInterest:(CGPoint)pointOfInterest
managedCapturer:(id<SCCapturer>)managedCapturer;
@end