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.
15 lines
342 B
15 lines
342 B
//
|
|
// Created by Lv,Xiangxiang on 2020/7/11.
|
|
// Copyright (c) 2020 Li,Xiaoyang(SYS). All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
@interface OcrData : NSObject
|
|
@property(nonatomic, copy) NSString *label;
|
|
@property(nonatomic) int category;
|
|
@property(nonatomic) float accuracy;
|
|
@property(nonatomic) NSArray *polygonPoints;
|
|
|
|
@end |