Skip to content

Commit 9eb8ede

Browse files
author
Yifei Kang
committed
A tiny typo in the state augmentation jacobian.
1 parent 50c22ad commit 9eb8ede

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/msckf_vio.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ void MsckfVio::stateAugmentation(const double& time) {
726726
J.block<3, 3>(3, 0) = skewSymmetric(R_w_i.transpose()*t_c_i);
727727
//J.block<3, 3>(3, 0) = -R_w_i.transpose()*skewSymmetric(t_c_i);
728728
J.block<3, 3>(3, 12) = Matrix3d::Identity();
729-
J.block<3, 3>(3, 18) = Matrix3d::Identity();
729+
J.block<3, 3>(3, 18) = R_w_i.transpose();
730730

731731
// Resize the state covariance matrix.
732732
size_t old_rows = state_server.state_cov.rows();

0 commit comments

Comments
 (0)