OliveappImageForVerifyConf.h 505 B

1234567891011121314151617181920212223
  1. //
  2. // ImageForVerifyConf.m
  3. // LivenessDetector
  4. //
  5. // Created by Xiaoyang Lin on 16/1/16.
  6. // Copyright © 2016年 Oliveapp. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface OliveappImageForVerifyConf: NSObject
  10. @property int imgWidth;
  11. @property int imgHeight;
  12. @property int targetWidth;
  13. @property int targetHeight;
  14. @property float horizontalPercent;
  15. @property float verticalOffset;
  16. @property int preRotationDegree;
  17. @property int horizontalMargin;
  18. @property bool shouldFlip;
  19. @end