Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Commit

Permalink
polishing program arguements
Browse files Browse the repository at this point in the history
  • Loading branch information
syncle committed Jul 12, 2018
1 parent 0d98d5d commit c5f2732
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
7 changes: 3 additions & 4 deletions source/FastGlobalRegistration/evaluation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,13 @@
int main(int argc, char * argv[])
{
if (argc != 6) {
cout << "Usage : " << endl;
cout << " Evaluation.exe <feature0> <feature1> <log_gth> <log_est> <output>" << endl;
printf("Usage ::\n");
printf("%s [feature_01] [feature_02] [transform_gth_log] [transform_est_txt] [eval_txt]\n", argv[0]);
return 0;
}
CApp app;
CApp app;
app.ReadFeature(argv[1]);
app.ReadFeature(argv[2]);
app.Evaluation(argv[3], argv[4], argv[5]);
return 0;
}

3 changes: 2 additions & 1 deletion source/FastGlobalRegistration/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ int main(int argc, char *argv[])
{
if (argc != 4)
{
printf("FastGlobalRegistration.exe [feature_01] [feature_02] [output_txt]\n");
printf("Usage ::\n");
printf("%s [feature_01] [feature_02] [transform_output_txt]\n", argv[0]);
return 0;
}
CApp app;
Expand Down

0 comments on commit c5f2732

Please sign in to comment.