2014 snapchat source code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
634 B

//
// SCCaptureCoreImageFaceDetector.h
// Snapchat
//
// Created by Jiyang Zhu on 3/27/18.
// Copyright © 2018 Snapchat, Inc. All rights reserved.
//
// This class is intended to detect faces in Camera. It receives CMSampleBuffer, process the face detection using
// CIDetector, and announce the bounds and faceIDs.
#import "SCCaptureFaceDetector.h"
#import <SCBase/SCMacros.h>
#import <SCCameraFoundation/SCManagedVideoDataSourceListener.h>
#import <Foundation/Foundation.h>
@interface SCCaptureCoreImageFaceDetector : NSObject <SCCaptureFaceDetector, SCManagedVideoDataSourceListener>
SC_INIT_AND_NEW_UNAVAILABLE;
@end