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.
21 lines
520 B
21 lines
520 B
//
|
|
// DetectImageForOCRPhotoViewController.h
|
|
// xMediaDemo
|
|
//
|
|
// Created by 053508 on 2020/6/19.
|
|
// Copyright © 2020 DTF. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef void(^ImageBlock)(UIImage *image, UIImage * _Nullable originImage);
|
|
|
|
@interface DetectImageForOCRPhotoViewController : UIViewController
|
|
@property (nonatomic, copy) ImageBlock imageblock;
|
|
@property (nonatomic,assign) NSInteger type;//类型为0表示身份证面,1为国徽面。
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|