Merge branch 'david_devel' into 'master'
fixed double slashes when printing calib file path See merge request VladyslavUsenko/basalt!1
This commit is contained in:
commit
1beb7132fc
|
@ -646,7 +646,7 @@ void CamCalib::saveCalib() {
|
||||||
if (calib_opt) {
|
if (calib_opt) {
|
||||||
calib_opt->saveCalib(cache_path, vio_dataset->get_mocap_to_imu_offset_ns());
|
calib_opt->saveCalib(cache_path, vio_dataset->get_mocap_to_imu_offset_ns());
|
||||||
|
|
||||||
std::cout << "Saved calibration in " << cache_path << "/calibration.json"
|
std::cout << "Saved calibration in " << cache_path << "calibration.json"
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -689,7 +689,7 @@ void CamImuCalib::saveCalib() {
|
||||||
if (calib_opt) {
|
if (calib_opt) {
|
||||||
calib_opt->saveCalib(cache_path);
|
calib_opt->saveCalib(cache_path);
|
||||||
|
|
||||||
std::cout << "Saved calibration in " << cache_path << "/calibration.json"
|
std::cout << "Saved calibration in " << cache_path << "calibration.json"
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue