OliveappDetectedFrame.h 431 B

12345678910111213141516171819
  1. //
  2. // DetectedFrame.h
  3. // LivenessDetector
  4. //
  5. // Created by Jiteng Hao on 16/1/18.
  6. // Copyright © 2016年 Oliveapp. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface OliveappDetectedFrame : NSObject
  10. @property (strong) NSData* frameData; // 默认为nil
  11. @property (strong) NSData* verificationData;
  12. - (id) initWithFrameData: (NSData*) frameData
  13. withVerificationData: (NSData*) verificationData;
  14. @end