@@ -22,7 +22,7 @@ projection_parameters:
22
22
cy : 2.481e+02
23
23
24
24
# Extrinsic parameter between IMU and Camera.
25
- estimate_extrinsic : 1 # 0 Have an accurate extrinsic parameters. We will trust the following imu^R_cam, imu^T_cam, don't change it.
25
+ estimate_extrinsic : 0 # 0 Have an accurate extrinsic parameters. We will trust the following imu^R_cam, imu^T_cam, don't change it.
26
26
# 1 Have an initial guess about extrinsic parameters. We will optimize around your initial guess.
27
27
# 2 Don't know anything about extrinsic parameters. You don't need to give R,T. We will try to calibrate it. Do some rotation movement at beginning.
28
28
# If you choose 0 or 1, you should write down the following matrix.
@@ -31,15 +31,15 @@ extrinsicRotation: !!opencv-matrix
31
31
rows : 3
32
32
cols : 3
33
33
dt : d
34
- data : [0, -1 , 0,
35
- 1 , 0, 0,
36
- 0 , 0, 1 ]
34
+ data : [0.0148655429818 , -0.999880929698 , 0.00414029679422,
35
+ 0.999557249008 , 0.0149672133247 , 0.025715529948 ,
36
+ -0.0257744366974 , 0.00375618835797, 0.999660727178 ]
37
37
# Translation from camera frame to imu frame, imu^T_cam
38
38
extrinsicTranslation : !!opencv-matrix
39
39
rows : 3
40
40
cols : 1
41
41
dt : d
42
- data : [-0.02 ,-0.06 , 0.01 ]
42
+ data : [-0.0216401454975 ,-0.064676986768 , 0.00981073058949 ]
43
43
44
44
# feature traker paprameters
45
45
max_cnt : 150 # max feature number in feature tracking
@@ -56,10 +56,10 @@ max_num_iterations: 8 # max solver itrations, to guarantee real time
56
56
keyframe_parallax : 10.0 # keyframe selection threshold (pixel)
57
57
58
58
# imu parameters The more accurate parameters you provide, the better performance
59
- acc_n : 0.2 # accelerometer measurement noise standard deviation. #0.2
60
- gyr_n : 0.02 # gyroscope measurement noise standard deviation. #0.05
61
- acc_w : 0.0002 # accelerometer bias random work noise standard deviation. #0.02
62
- gyr_w : 2.0e-5 # gyroscope bias random work noise standard deviation. #4.0e-5
59
+ acc_n : 0.08 # accelerometer measurement noise standard deviation. #0.2 0.04
60
+ gyr_n : 0.004 # gyroscope measurement noise standard deviation. #0.05 0.004
61
+ acc_w : 0.00004 # accelerometer bias random work noise standard deviation. #0.02
62
+ gyr_w : 2.0e-6 # gyroscope bias random work noise standard deviation. #4.0e-5
63
63
g_norm : 9.81007 # gravity magnitude
64
64
65
65
# loop closure parameters
0 commit comments