BDFaceImageShow.h 599 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // BDFaceImageShow.h
  3. // FaceSDKSample_IOS
  4. //
  5. // Created by 孙明喆 on 2020/4/1.
  6. // Copyright © 2020 Baidu. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <AVKit/AVKit.h>
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface BDFaceImageShow : NSObject
  12. @property (nonatomic, readwrite) UIImage *successImage;
  13. @property (nonatomic,assign) float silentliveScore;
  14. + (instancetype)sharedInstance;
  15. - (void)setSuccessImage:(UIImage *)image;
  16. - (void)setSilentliveScore:(float)score;
  17. - (UIImage *)getSuccessImage;
  18. - (float)getSilentliveScore;
  19. - (void) reset;
  20. @end
  21. NS_ASSUME_NONNULL_END