-
Notifications
You must be signed in to change notification settings - Fork 14
/
config.yaml
127 lines (98 loc) · 2.49 KB
/
config.yaml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# Paths to data directories for GPR image construction.
directory_paths: [
'/home/abaik/gpr_data_analysis_ws/data/PUBTEST/1612204529-582686901-smith-cmu-gpr'
]
training_data_output_path: '/home/abaik/gpr_data_analysis_ws/data/train_out'
# Ground truth point.
# Either center or left.
ground_truth_point: 'center'
radargram:
create: True
training_data_image_resolution: 0.015 # meters.
submaps:
# Turn on submap construction.
create: False
# Range covered in training data images.
training_data_image_range: 3
# Resolution of training data image (number of columns).
# This value should be approximately the same as the number of GPR measurements
# within the desired range.
training_data_image_size: 100
training_data_image_resolution: 0.015 # meters.
# Distance between total station measurements in image construction.
ts_spacing: 0.02 # meters.
# Distance between odom measurements in image construction.
we_spacing: 0.02 # meters.
im_props:
# Image resolution.
resolution: 0.02 # meters.
# Subtract background from image.
background_removal: true
background_removal_window: 0
background_removal_range_mult: 3
# Manually selected SEC gain parameters.
# NSH Highbay
# std_max: 3
# sec_gain_params:
# a: .015
# b: .01
# thresh: 100
# # NSH B Level
# std_max: 2
# sec_gain_params:
# a: .06
# b: .5
# thresh: 80
# # NREC
# std_max: 2
# sec_gain_params:
# a: .03
# b: 0
# thresh: 110
# # Gates garage.
# std_max: 2
# sec_gain_params:
# a: .03
# b: .7
# thresh: 80
# # Highbay
std_max: 2.5
sec_gain_params:
a: .015
b: 0
thresh: 100
gaussian_params:
use: True
sigma: 1
order: 0
triangular_params:
# Manufacturer specified system parameters.
sampling_freq: 5e+9
min_freq: 200e+6
max_freq: 850e+6
num_taps: 101
dewow_params:
degree: 3
# Splitting up data based on critical points.
split:
# Change direction (forward-backward detector).
range:
# Acceleration peak.
# Second derivative of the filtered odom values.
accel: 0.0003
# Butterworth bandpass filter parameters.
butter:
order: 3
wn: 0.02
# Change direction (turning detector).
gyro:
# Turn off turning detector.
use: False
# Height of angular velocity peak.
height: 0.1
# Distance between angular velocity peaks.
dist: 2000
visualize:
imu_peaks: False
gpr_image: False
show: True