Skip to content

Commit

Permalink
fix #333 documention typos
Browse files Browse the repository at this point in the history
  • Loading branch information
goldbattle committed May 9, 2023
1 parent 068490c commit eb463b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/eval-error.dox
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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 <align_mode> <file_gt.txt> ... <file_est9.txt>
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%
Expand Down
4 changes: 2 additions & 2 deletions ov_eval/src/format_converter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 <file.csv or folder\n" RESET);
PRINT_ERROR(RED "ERROR: rosrun ov_eval format_convert <file.csv or folder>\n" RESET);
PRINT_ERROR(RED "ERROR: ./format_converter <file.csv or folder\n" RESET);
PRINT_ERROR(RED "ERROR: rosrun ov_eval format_converter <file.csv or folder>\n" RESET);
std::exit(EXIT_FAILURE);
}

Expand Down

0 comments on commit eb463b2

Please sign in to comment.