Skip to content

Commit

Permalink
Merge pull request gaoxiang12#130 from YuYuCong/patch-2
Browse files Browse the repository at this point in the history
Fix arg.param for Ch10 Ceres
  • Loading branch information
Xiang Gao authored Aug 23, 2018
2 parents df8e9be + 55e72e4 commit 4ecaa04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ch10/ceres_custombundle/common/BundleParams.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ struct BundleParams{
arg.param("point_sigma",point_sigma,0.0,"Standard deviation of the point "
"perturbation.");
arg.param("random_seed", random_seed, 38401,"Random seed used to set the state ");
arg.param("initial_ply", initial_ply,"","Export the BAL file data as a PLY file.");
arg.param("final_ply", final_ply, "", "Export the refined BAL file data as a PLY");
arg.param("initial_ply", initial_ply,"initial_ply","Export the BAL file data as a PLY file.");
arg.param("final_ply", final_ply, "final_ply", "Export the refined BAL file data as a PLY");


arg.parseArgs(argc, argv);
}

#endif
#endif

0 comments on commit 4ecaa04

Please sign in to comment.