fixed double slashes when printing calib file path

This commit is contained in:
David Schubert 2019-04-15 14:30:43 +02:00
parent 4fd5d503e6
commit aeb850cc2c
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}

View File

@ -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;
}
}