update: init auxiliary files
Browse files- resources/fast-scnn.pt +3 -0
- resources/small_voc.yml.gz +3 -0
- vslamlab_okvis2_settings.yaml +54 -0
resources/fast-scnn.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fcef94092f5f0f6425fc479bd32f0a57b05be2fdbdd896a3c3941c1532a861e4
|
| 3 |
+
size 4958078
|
resources/small_voc.yml.gz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5794b4add087ff23e54fa229d9773ab2fb25a81a75eac3e29af233b02a929f4d
|
| 3 |
+
size 64538
|
vslamlab_okvis2_settings.yaml
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
%YAML:1.0
|
| 2 |
+
|
| 3 |
+
#--------------------------------------------------------------------------------------------
|
| 4 |
+
# Sensor names
|
| 5 |
+
#--------------------------------------------------------------------------------------------
|
| 6 |
+
cam_mono: rgb_0
|
| 7 |
+
imu: imu_0
|
| 8 |
+
|
| 9 |
+
# additional camera parameters
|
| 10 |
+
camera_parameters:
|
| 11 |
+
timestamp_tolerance: 0.005 # [s] stereo frame out-of-sync tolerance
|
| 12 |
+
sync_cameras: [0] # the cameras that will be synchronised
|
| 13 |
+
image_delay: 0.0 # [s] timestamp_camera_correct = timestamp_camera - image_delay
|
| 14 |
+
online_calibration: # some parameters to set the online
|
| 15 |
+
do_extrinsics: false # Do we online-calibrate extrinsics?
|
| 16 |
+
do_extrinsics_final_ba: true # Do we calibrate extrinsics in final BA?
|
| 17 |
+
sigma_r: 0.01 # T_SCi position prior stdev [m]
|
| 18 |
+
sigma_alpha: 0.1 # T_SCi orientation prior stdev [rad]
|
| 19 |
+
sigma_r_final_ba: 0.03 # T_SCi position prior stdev in final BA [m]
|
| 20 |
+
sigma_alpha_final_ba: 0.3 # T_SCi orientation prior stdev in final BA [rad]
|
| 21 |
+
|
| 22 |
+
# frontend: detection etc.
|
| 23 |
+
frontend_parameters:
|
| 24 |
+
detection_threshold: 38.0 #42.0 # detection threshold. By default the uniformity radius in pixels
|
| 25 |
+
absolute_threshold: 150.0 # absolute Harris corner threshold (noise floor)
|
| 26 |
+
matching_threshold: 60.0 # BRISK descriptor matching threshold
|
| 27 |
+
octaves: 0 # number of octaves for detection. 0 means single-scale at highest resolution
|
| 28 |
+
max_num_keypoints: 700 # restrict to a maximum of this many keypoints per image (strongest ones)
|
| 29 |
+
keyframe_overlap: 0.60 # minimum field-of-view overlap
|
| 30 |
+
use_cnn: false # use the CNN (if available) to filter out dynamic content / sky
|
| 31 |
+
parallelise_detection: true # Run parallel detect & describe.
|
| 32 |
+
num_matching_threads: 4 # Parallelise matching with this number of threads.
|
| 33 |
+
|
| 34 |
+
# estimator parameters
|
| 35 |
+
estimator_parameters:
|
| 36 |
+
num_keyframes: 5 # number of keyframes in optimisation window
|
| 37 |
+
num_loop_closure_frames: 3 # number of loop closure frames in optimisation window
|
| 38 |
+
num_imu_frames: 3 # number of frames linked by most recent nonlinear IMU error terms
|
| 39 |
+
do_loop_closures: true # whether to do VI-SLAM or VIO
|
| 40 |
+
do_final_ba: false # Whether to run a full final BA
|
| 41 |
+
enforce_realtime: false # whether to limit the time budget for optimisation
|
| 42 |
+
realtime_min_iterations: 3 # minimum number of iterations always performed
|
| 43 |
+
realtime_max_iterations: 10 # never do more than these, even if not converged
|
| 44 |
+
realtime_time_limit: 0.035 # time budget for realtime optimisation [s]
|
| 45 |
+
realtime_num_threads: 3 # number of threads for the realtime optimisation
|
| 46 |
+
full_graph_iterations: 15 # don't do more than these for the full (background) optimisation
|
| 47 |
+
full_graph_num_threads: 3 # number of threads for the full (background) optimisation
|
| 48 |
+
p_dbow: 0.4 # Match threshold for dBoW -- unfortunately this varies with setups.
|
| 49 |
+
drift_percentage_heuristic: 1.35 # % allowed drift in loop closures rel. to dist. travelled.
|
| 50 |
+
|
| 51 |
+
# some options for how and what to output
|
| 52 |
+
output_parameters:
|
| 53 |
+
display_matches: true # displays debug video and matches. May be slow.
|
| 54 |
+
display_overhead: false # debug overhead image. Is slow.
|