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

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