initial commit
This commit is contained in:
115
config/rpng_aruco/estimator_config.yaml
Normal file
115
config/rpng_aruco/estimator_config.yaml
Normal file
@@ -0,0 +1,115 @@
|
||||
%YAML:1.0 # need to specify the file type at the top!
|
||||
|
||||
verbosity: "INFO" # ALL, DEBUG, INFO, WARNING, ERROR, SILENT
|
||||
|
||||
use_fej: true # if we should use first-estimate Jacobians (enable for good consistency)
|
||||
use_imuavg: true # for our discrete integration, if we should average sequential IMU measurements to "smooth" it
|
||||
use_rk4int: true # if rk4 integration should be used (overrides imu averaging)
|
||||
|
||||
use_stereo: true # if we have more than 1 camera, if we should try to track stereo constraints
|
||||
max_cameras: 2
|
||||
|
||||
calib_cam_extrinsics: true
|
||||
calib_cam_intrinsics: true
|
||||
calib_cam_timeoffset: true
|
||||
|
||||
max_clones: 11
|
||||
max_slam: 50
|
||||
max_slam_in_update: 25
|
||||
max_msckf_in_update: 50
|
||||
dt_slam_delay: 2
|
||||
|
||||
gravity_mag: 9.81
|
||||
|
||||
feat_rep_msckf: "GLOBAL_3D"
|
||||
feat_rep_slam: "ANCHORED_MSCKF_INVERSE_DEPTH"
|
||||
feat_rep_aruco: "ANCHORED_MSCKF_INVERSE_DEPTH"
|
||||
|
||||
# zero velocity update parameters we can use
|
||||
# we support either IMU-based or disparity detection.
|
||||
try_zupt: true
|
||||
zupt_chi2_multipler: 0 # set to 0 for only disp-based
|
||||
zupt_max_velocity: 0.1
|
||||
zupt_noise_multiplier: 50
|
||||
zupt_max_disparity: 0.5 # set to 0 for only imu-based
|
||||
zupt_only_at_beginning: true
|
||||
|
||||
# ==================================================================
|
||||
# ==================================================================
|
||||
|
||||
init_window_time: 2.0
|
||||
init_imu_thresh: 1.2
|
||||
init_max_disparity: 1.5
|
||||
init_max_features: 25
|
||||
|
||||
init_dyn_mle_opt_calib: false
|
||||
init_dyn_mle_max_iter: 50
|
||||
init_dyn_mle_max_time: 0.05
|
||||
init_dyn_mle_max_threads: 6
|
||||
init_dyn_num_pose: 6
|
||||
init_dyn_min_deg: 10.0
|
||||
|
||||
init_dyn_inflation_ori: 10
|
||||
init_dyn_inflation_vel: 100
|
||||
init_dyn_inflation_bg: 10
|
||||
init_dyn_inflation_ba: 100
|
||||
init_dyn_min_rec_cond: 1e-20
|
||||
|
||||
init_dyn_bias_g: [0.0, 0.0, 0.0]
|
||||
init_dyn_bias_a: [0.0, 0.0, 0.0]
|
||||
|
||||
# ==================================================================
|
||||
# ==================================================================
|
||||
|
||||
record_timing_information: false
|
||||
record_timing_filepath: "/tmp/traj_timing.txt"
|
||||
|
||||
save_total_state: false
|
||||
filepath_est: "/tmp/ov_estimate.txt"
|
||||
filepath_std: "/tmp/ov_estimate_std.txt"
|
||||
filepath_gt: "/tmp/ov_groundtruth.txt"
|
||||
|
||||
# ==================================================================
|
||||
# ==================================================================
|
||||
|
||||
# our front-end feature tracking parameters
|
||||
# we have a KLT and descriptor based (KLT is better implemented...)
|
||||
use_klt: true
|
||||
num_pts: 150
|
||||
fast_threshold: 30
|
||||
grid_x: 20
|
||||
grid_y: 20
|
||||
min_px_dist: 30
|
||||
knn_ratio: 0.85
|
||||
track_frequency: 21.0
|
||||
downsample_cameras: false
|
||||
multi_threading: true
|
||||
histogram_method: "HISTOGRAM" # NONE, HISTOGRAM, CLAHE
|
||||
|
||||
# aruco tag tracker for the system
|
||||
# DICT_6X6_1000 from https://chev.me/arucogen/
|
||||
use_aruco: true
|
||||
num_aruco: 1024
|
||||
downsize_aruco: true
|
||||
|
||||
# ==================================================================
|
||||
# ==================================================================
|
||||
|
||||
# camera noises and chi-squared threshold multipliers
|
||||
up_msckf_sigma_px: 1
|
||||
up_msckf_chi2_multipler: 1
|
||||
up_slam_sigma_px: 1
|
||||
up_slam_chi2_multipler: 1
|
||||
up_aruco_sigma_px: 1
|
||||
up_aruco_chi2_multipler: 8
|
||||
|
||||
# masks for our images
|
||||
use_mask: false
|
||||
|
||||
# imu and camera spacial-temporal
|
||||
# imu config should also have the correct noise values
|
||||
relative_config_imu: "kalibr_imu_chain.yaml"
|
||||
relative_config_imucam: "kalibr_imucam_chain.yaml"
|
||||
|
||||
|
||||
|
||||
16
config/rpng_aruco/kalibr_imu_chain.yaml
Normal file
16
config/rpng_aruco/kalibr_imu_chain.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
%YAML:1.0
|
||||
|
||||
imu0:
|
||||
T_i_b:
|
||||
- [1.0, 0.0, 0.0, 0.0]
|
||||
- [0.0, 1.0, 0.0, 0.0]
|
||||
- [0.0, 0.0, 1.0, 0.0]
|
||||
- [0.0, 0.0, 0.0, 1.0]
|
||||
accelerometer_noise_density: 2.0000e-3 # [ m / s^2 / sqrt(Hz) ] ( accel "white noise" )
|
||||
accelerometer_random_walk: 3.0000e-3 # [ m / s^3 / sqrt(Hz) ]. ( accel bias diffusion )
|
||||
gyroscope_noise_density: 1.6968e-04 # [ rad / s / sqrt(Hz) ] ( gyro "white noise" )
|
||||
gyroscope_random_walk: 1.9393e-05 # [ rad / s^2 / sqrt(Hz) ] ( gyro bias diffusion )
|
||||
model: calibrated
|
||||
rostopic: /imu0
|
||||
time_offset: 0.0
|
||||
update_rate: 200.0
|
||||
28
config/rpng_aruco/kalibr_imucam_chain.yaml
Normal file
28
config/rpng_aruco/kalibr_imucam_chain.yaml
Normal file
@@ -0,0 +1,28 @@
|
||||
%YAML:1.0
|
||||
|
||||
cam0:
|
||||
T_imu_cam: #rotation from camera to IMU R_CtoI, position of camera in IMU p_CinI
|
||||
- [-0.99997806, -0.00600501, 0.0027968, 0.03847796]
|
||||
- [0.00601449, -0.99997615, 0.00339343, -0.0045601]
|
||||
- [0.00277635, 0.00341018, 0.99999033, 0.00418038]
|
||||
- [0.0, 0.0, 0.0, 1.0]
|
||||
cam_overlaps: [1]
|
||||
camera_model: pinhole
|
||||
distortion_coeffs: [-0.292031518680717,0.08753155838496009,0.0009568457669165753,2.3463489813256424e-05]
|
||||
distortion_model: radtan
|
||||
intrinsics: [470.0502737897896,468.7574814232544,405.80799445368035,245.2879780490104] #fu, fv, cu, cv
|
||||
resolution: [752, 480]
|
||||
rostopic: /cam0/image_raw
|
||||
cam1:
|
||||
T_imu_cam: #rotation from camera to IMU R_CtoI, position of camera in IMU p_CinI
|
||||
- [-0.99984421, -0.00389232, 0.01721638, -0.07075565]
|
||||
- [0.00394176, -0.9999882, 0.0028389, -0.00418534]
|
||||
- [0.01720512, 0.00290632, 0.99984776, 0.00388861]
|
||||
- [0.0, 0.0, 0.0, 1.0]
|
||||
cam_overlaps: [0]
|
||||
camera_model: pinhole
|
||||
distortion_coeffs: [-0.2847596229068525,0.07908861097045865,0.0011071433505703875,0.0005094909873658998]
|
||||
distortion_model: radtan
|
||||
intrinsics: [472.98384780424163,471.9917417027018,382.1928744696835,268.2536666120421] #fu, fv, cu, cv
|
||||
resolution: [752, 480]
|
||||
rostopic: /cam1/image_raw
|
||||
Reference in New Issue
Block a user