Upload vslamlab_okvis2_settings.yaml
Browse files
vslamlab_okvis2_settings.yaml
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
%YAML:1.0
|
| 2 |
+
|
| 3 |
+
# additional camera parameters
|
| 4 |
+
camera_parameters:
|
| 5 |
+
timestamp_tolerance: 0.005 # [s] stereo frame out-of-sync tolerance
|
| 6 |
+
sync_cameras: [0] # the cameras that will be synchronised
|
| 7 |
+
image_delay: 0.00 # [s] timestamp_camera_correct = timestamp_camera - image_delay
|
| 8 |
+
online_calibration: # some parameters to set the online
|
| 9 |
+
do_extrinsics: false # Do we online-calibrate extrinsics?
|
| 10 |
+
do_extrinsics_final_ba: false # Do we calibrate extrinsics in final BA?
|
| 11 |
+
sigma_r: 0.01 # T_SCi position prior stdev [m]
|
| 12 |
+
sigma_alpha: 0.05 # T_SCi orientation prior stdev [rad]
|
| 13 |
+
|
| 14 |
+
imu_parameters:
|
| 15 |
+
use: true
|
| 16 |
+
a_max: 176.0 # acceleration saturation [m/s^2]
|
| 17 |
+
g_max: 7.8 # gyro saturation [rad/s]
|
| 18 |
+
#sigma_g_c: 20.0e-4 # gyro noise density [rad/s/sqrt(Hz)]
|
| 19 |
+
#sigma_a_c: 20.0e-3 # accelerometer noise density [m/s^2/sqrt(Hz)]
|
| 20 |
+
sigma_bg: 0.01 # gyro bias prior [rad/s]
|
| 21 |
+
sigma_ba: 0.1 # accelerometer bias prior [m/s^2]
|
| 22 |
+
#sigma_gw_c: 20.0e-5 # gyro drift noise density [rad/s^s/sqrt(Hz)]
|
| 23 |
+
#sigma_aw_c: 20.0e-3 # accelerometer drift noise density [m/s^2/sqrt(Hz)]
|
| 24 |
+
g: 9.81007 # Earth's acceleration due to gravity [m/s^2]
|
| 25 |
+
g0: [ 0.0, 0.0, 0.0 ] # initial gyro bias [rad/s]
|
| 26 |
+
a0: [ -0.05, 0.09, 0.01 ] # initial accelerometer bias [m/s^2]
|
| 27 |
+
# transform Body-Sensor (IMU)
|
| 28 |
+
T_BS:
|
| 29 |
+
[1.0000, 0.0000, 0.0000, 0.0000,
|
| 30 |
+
0.0000, 1.0000, 0.0000, 0.0000,
|
| 31 |
+
0.0000, 0.0000, 1.0000, 0.0000,
|
| 32 |
+
0.0000, 0.0000, 0.0000, 1.0000]
|
| 33 |
+
|
| 34 |
+
# frontend: detection etc.
|
| 35 |
+
frontend_parameters:
|
| 36 |
+
detection_threshold: 38.0 #42.0 # detection threshold. By default the uniformity radius in pixels
|
| 37 |
+
absolute_threshold: 150.0 # absolute Harris corner threshold (noise floor)
|
| 38 |
+
matching_threshold: 60.0 # BRISK descriptor matching threshold
|
| 39 |
+
octaves: 0 # number of octaves for detection. 0 means single-scale at highest resolution
|
| 40 |
+
max_num_keypoints: 700 # restrict to a maximum of this many keypoints per image (strongest ones)
|
| 41 |
+
keyframe_overlap: 0.60 # minimum field-of-view overlap
|
| 42 |
+
use_cnn: false # use the CNN (if available) to filter out dynamic content / sky
|
| 43 |
+
parallelise_detection: true # Run parallel detect & describe.
|
| 44 |
+
num_matching_threads: 4 # Parallelise matching with this number of threads.
|
| 45 |
+
|
| 46 |
+
# estimator parameters
|
| 47 |
+
estimator_parameters:
|
| 48 |
+
num_keyframes: 5 # number of keyframes in optimisation window
|
| 49 |
+
num_loop_closure_frames: 3 # number of loop closure frames in optimisation window
|
| 50 |
+
num_imu_frames: 3 # number of frames linked by most recent nonlinear IMU error terms
|
| 51 |
+
do_loop_closures: true # whether to do VI-SLAM or VIO
|
| 52 |
+
do_final_ba: false # Whether to run a full final BA
|
| 53 |
+
enforce_realtime: false # whether to limit the time budget for optimisation
|
| 54 |
+
realtime_min_iterations: 3 # minimum number of iterations always performed
|
| 55 |
+
realtime_max_iterations: 10 # never do more than these, even if not converged
|
| 56 |
+
realtime_time_limit: 0.035 # time budget for realtime optimisation [s]
|
| 57 |
+
realtime_num_threads: 3 # number of threads for the realtime optimisation
|
| 58 |
+
full_graph_iterations: 15 # don't do more than these for the full (background) optimisation
|
| 59 |
+
full_graph_num_threads: 3 # number of threads for the full (background) optimisation
|
| 60 |
+
|
| 61 |
+
# some options for how and what to output
|
| 62 |
+
output_parameters:
|
| 63 |
+
display_matches: true # displays debug video and matches. May be slow.
|
| 64 |
+
display_overhead: false # debug overhead image. Is slow.
|
| 65 |
+
|