rain
2024-08-14 75e6eea8cd3fac9cc888e2ffc9cdb126fab8429d
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.dji.sample.patches.xml.mode;
 
import lombok.Builder;
import lombok.Data;
 
/**
 * @Author AIX
 * @Date 2024/7/20 11:51
 * @Version 1.0
 * 重叠率参数
 */
@Data
public class Overlap {
 
    /**
     * 可见光航向重叠率
     */
    private Integer orthoCameraOverlapH = 80;
    /**
     * 可见光旁向重叠率
     */
    private Integer orthoCameraOverlapW = 80;
    /**
     * 可见光航向重叠率
     */
    private Integer inclinedCameraOverlapH = 80;
    /**
     * 可见光旁向重叠率
     */
    private Integer inclinedCameraOverlapW = 70;
 
    public Overlap() {}
 
    public Overlap(Integer orthoCameraOverlapH, Integer orthoCameraOverlapW, Integer inclinedCameraOverlapH, Integer inclinedCameraOverlapW) {
        this.orthoCameraOverlapH = orthoCameraOverlapH;
        this.orthoCameraOverlapW = orthoCameraOverlapW;
        this.inclinedCameraOverlapH = inclinedCameraOverlapH;
        this.inclinedCameraOverlapW = inclinedCameraOverlapW;
    }
 
}