Skip to content

Commit 729f51c

Browse files
authored
Merge pull request #1354 from luxonis/v3_basalt_fix
V3 Basalt fix
2 parents b35fb88 + 9054385 commit 729f51c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/python/install_requirements.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def hasWhitespace(string):
6262
DEPENDENCIES.append('opencv-python')
6363

6464
if args.install_rerun:
65-
DEPENDENCIES.append('rerun-sdk==0.16.0')
65+
DEPENDENCIES.append('rerun-sdk')
6666
if args.install_open3d_cpu:
6767
DEPENDENCIES.append('open3d-cpu')
6868
# Constants

src/basalt/BasaltVIO.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ void BasaltVIO::initialize(std::vector<std::shared_ptr<ImgFrame>> frames) {
158158
R << imuExtr[0][0], imuExtr[0][1], imuExtr[0][2], imuExtr[1][0], imuExtr[1][1], imuExtr[1][2], imuExtr[2][0], imuExtr[2][1], imuExtr[2][2];
159159
Eigen::Quaterniond q(R);
160160

161-
Eigen::Vector3d trans(double(imuExtr[0][3]) * 0.01, double(imuExtr[1][3]) * 0.01, double(imuExtr[2][3]) * 0.01);
161+
Eigen::Vector3d trans(-double(imuExtr[0][3]) * 0.01, double(imuExtr[1][3]) * 0.01, double(imuExtr[2][3]) * 0.01);
162162
basalt::Calibration<Scalar>::SE3 T_i_c(q, trans);
163163
calib->T_i_c.push_back(T_i_c);
164164

0 commit comments

Comments
 (0)