Skip to content

Commit 053b2b5

Browse files
committed
fix git submodule update (remove remote update)
1 parent aaa9c22 commit 053b2b5

File tree

5 files changed

+6
-9
lines changed

5 files changed

+6
-9
lines changed

build_thirdparty.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ echo "----------------------------------------------------"
3737
echo "update submodules remotely, it may take some time..."
3838
echo "----------------------------------------------------"
3939
git submodule update --init --recursive
40-
git submodule update --remote --recursive
4140
if [ $? -ne 0 ]; then
4241
echo "--------------------------------------------"
4342
echo "error occurs when updating submodules, exit!"

docs/details/news.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@
2929

3030
For more details about the newly released RGBD-Inertial calibration method, please refer to our article :point_down::
3131

32-
```tex
33-
# todo
34-
```
32+
+ **S. Chen**, X. Li*, S. Li, and Y. Zhou. iKalibr-RGBD: Partially-Specialized Target-Free Visual-Inertial Spatiotemporal Calibration For RGBDs via Continuous-Time Velocity Estimation[J]. arXiv:2409 [cs.RO]. [paper-arXiv (uploading)]
3533

3634
Other small changes in this version are:
3735

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
For more details, please refer to our article :point_down::
2929

3030
+ **S. Chen**, X. Li*, S. Li, Y. Zhou, and X. Yang. iKalibr: Unified Targetless Spatiotemporal Calibration for Resilient Integrated Inertial Systems[J]. arXiv:2407.11420 [cs.RO]. [[paper-arXiv](https://arxiv.org/abs/2407.11420)] [[video](https://www.bilibili.com/video/BV1Dm421G7FV/?vd_source=87245258ec5029cca67d77cef1a6201d)]
31-
+ iKalibr-RGBD: todo
31+
+ **S. Chen**, X. Li*, S. Li, and Y. Zhou. iKalibr-RGBD: Partially-Specialized Target-Free Visual-Inertial Spatiotemporal Calibration For RGBDs via Continuous-Time Velocity Estimation[J]. arXiv:2409 [cs.RO]. [paper-arXiv (uploading)]
3232

3333
---
3434

src/solver/calib_solver_da_impl.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -599,15 +599,15 @@ std::map<std::string, std::vector<OpticalFlowCorr::Ptr>> CalibSolver::DataAssoci
599599
Eigen::Vector2d lVec = subAMat * LIN_VEL_DnToBr0InDn;
600600
Eigen::Vector2d bMat = corr->MidPointVel(readout) - subBMat * ANG_VEL_DnToBr0InDn;
601601
Eigen::Vector1d HMat = bMat.transpose() * bMat;
602-
double estDepth = (HMat.inverse() * bMat.transpose() * lVec)(0, 0);
603-
double newRawDepth = intri->RawDepth(estDepth);
602+
double estimatedDepth = (HMat.inverse() * bMat.transpose() * lVec)(0, 0);
603+
double newRawDepth = intri->RawDepth(estimatedDepth);
604604

605605
// spdlog::info(
606606
// "raw depth: {:.3f}, actual depth: {:.3f}, est depth: {:.3f}, new raw depth: "
607607
// "{:.3f}",
608608
// corr->depth, actualDepth, estDepth, newRawDepth);
609609

610-
if (estDepth < 1E-3) {
610+
if (estimatedDepth < 1E-3) {
611611
// depth is negative, do not introduce it to estimator.
612612
continue;
613613
}

thirdparty/ctraj

Submodule ctraj updated from d15db54 to b42b978

0 commit comments

Comments
 (0)