fixed double slashes when printing calib file path
This commit is contained in:
parent
4fd5d503e6
commit
aeb850cc2c
|
@ -646,7 +646,7 @@ void CamCalib::saveCalib() {
|
|||
if (calib_opt) {
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -689,7 +689,7 @@ void CamImuCalib::saveCalib() {
|
|||
if (calib_opt) {
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue