diff --git a/docs/eval-error.dox b/docs/eval-error.dox index 129b95ce7..ae5dc8c7b 100644 --- a/docs/eval-error.dox +++ b/docs/eval-error.dox @@ -38,8 +38,8 @@ By default the EuRoC groundtruth has the timestamp in nanoseconds and the quater A user can either process all CSV files in a given folder, or just a specific one. @code{.shell-session} -rosrun ov_eval format_convert folder/path/ -rosrun ov_eval format_convert file.csv +rosrun ov_eval format_converter folder/path/ +rosrun ov_eval format_converter file.csv @endcode In addition we have a specific folder structure that is assumed. @@ -98,7 +98,7 @@ It will use the filename as the name in the legend, so you can change that to ch @code{.shell-session} rosrun ov_eval plot_trajectories ... -rosrun ov_eval plot_trajectories posyaw 1565371553_estimate.txt truths/V1_01_easy.txt +rosrun ov_eval plot_trajectories posyaw truths/V1_01_easy.txt 1565371553_estimate.txt @endcode @image html eval/plot_xy.png width=70% diff --git a/ov_eval/src/format_converter.cpp b/ov_eval/src/format_converter.cpp index b69be4980..4cf9c8bd2 100644 --- a/ov_eval/src/format_converter.cpp +++ b/ov_eval/src/format_converter.cpp @@ -134,8 +134,8 @@ int main(int argc, char **argv) { // Ensure we have a path if (argc < 2) { PRINT_ERROR(RED "ERROR: Please specify a file to convert\n" RESET); - PRINT_ERROR(RED "ERROR: ./format_convert \n" RESET); + PRINT_ERROR(RED "ERROR: ./format_converter \n" RESET); std::exit(EXIT_FAILURE); }