1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package com.xindao.ocr.smartjavaai.config;
|
| import cn.smartjavaai.common.config.ModelConfig;
| import com.xindao.ocr.smartjavaai.enums.TableStructureModelEnum;
| import lombok.Data;
|
| /**
| * OCR表格结构识别模型配置
| * @author dwj
| */
| @Data
| public class TableStructureConfig extends ModelConfig {
|
| /**
| * 模型
| */
| private TableStructureModelEnum modelEnum;
|
| /**
| * 检测模型路径
| */
| private String modelPath;
|
|
| }
|
|