Skip to content

Commit

Permalink
fix a bug that ex cannot be locked when setting estimate_extrinsic to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
pjrambo committed Oct 9, 2019
1 parent 6766e1c commit 9ec9283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vins_estimator/src/estimator/estimator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@ void Estimator::double2vector()
ric[i] = Quaterniond(para_Ex_Pose[i][6],
para_Ex_Pose[i][3],
para_Ex_Pose[i][4],
para_Ex_Pose[i][5]).toRotationMatrix();
para_Ex_Pose[i][5]).normalized().toRotationMatrix();
}
}

Expand Down

0 comments on commit 9ec9283

Please sign in to comment.