zouyu
2025-11-27 eed98e551c817ead7965e08820d4b7adbc4a47f0
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
42
43
44
45
package com.xindao.ocr.smartjavaai.entity;
 
import cn.smartjavaai.common.entity.DetectionRectangle;
import com.xindao.ocr.smartjavaai.enums.PlateType;
import lombok.Data;
 
/**
 * 车牌识别信息
 * @author dwj
 */
@Data
public class PlateInfo {
 
    /**
     * 车牌类型
     */
    private PlateType plateType;
 
    /**
     * 车牌号码
     */
    private String plateNumber;
 
    /**
     * 车牌颜色
     */
    private String plateColor;
 
    /**
     * 检测位置信息
     */
    private DetectionRectangle detectionRectangle;
 
    /**
     * 车牌4角坐标
     */
    private OcrBox box;
 
    /**
     * 检测得分
     */
    private float score;
 
 
}