BDFaceUtil.h 586 B

12345678910111213141516171819202122
  1. //
  2. // Util.h
  3. // IDLFaceSDK
  4. //
  5. // Created by Tong,Shasha on 2017/5/24.
  6. // Copyright © 2017年 Baidu. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <CoreGraphics/CoreGraphics.h>
  10. #import <UIKit/UIKit.h>
  11. #define FACESDK_BUNDLE_Name @"com.baidu.idl.face.faceSDK.bundle"
  12. #define FACESDK_BUNDLE [[NSBundle alloc] initWithPath:[[NSBundle mainBundle] pathForResource:FACESDK_BUNDLE_Name ofType:nil]]
  13. @interface BDFaceUtil : NSObject
  14. + (CGRect)convertRectFrom:(CGRect)imageRect image:(UIImage *)image previewRect:(CGRect)previewRect;
  15. + (NSString *)iphoneType;
  16. @end