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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
| package com.xindao.ocr.smartjavaai.entity;
|
| /**
| * 方向检测结果
| * @author Calvin
| * @mail 179209347@qq.com
| * @website www.aias.top
| */
| public class DirectionInfo {
|
| /**
| * 方向 0 90 180 270
| */
| private String name;
|
| /**
| * 置信度
| */
| private Double prob;
|
| public DirectionInfo(String name, Double prob) {
| this.name = name;
| this.prob = prob;
| }
|
| public String getName() {
| return name;
| }
|
| public void setName(String name) {
| this.name = name;
| }
|
| public Double getProb() {
| return prob;
| }
|
| public void setProb(Double prob) {
| this.prob = prob;
| }
| }
|
|