Skip to content

Commit

Permalink
[software] SfM: features/matchesFolders are no more required
Browse files Browse the repository at this point in the history
When computing a SfM node from a previous SfM, the features/matches are
not needed.
  • Loading branch information
fabiencastan committed Jan 30, 2020
1 parent 80a24b8 commit b592507
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/software/pipeline/main_incrementalSfM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,14 @@ int main(int argc, char **argv)
"SfMData file.")
("output,o", po::value<std::string>(&outputSfM)->required(),
"Path to the output SfMData file.")
("featuresFolders,f", po::value<std::vector<std::string>>(&featuresFolders)->multitoken()->required(),
"Path to folder(s) containing the extracted features.")
("matchesFolders,m", po::value<std::vector<std::string>>(&matchesFolders)->multitoken()->required(),
"Path to folder(s) in which computed matches are stored.");
;

po::options_description optionalParams("Optional parameters");
optionalParams.add_options()
("featuresFolders,f", po::value<std::vector<std::string>>(&featuresFolders)->multitoken(),
"Path to folder(s) containing the extracted features.")
("matchesFolders,m", po::value<std::vector<std::string>>(&matchesFolders)->multitoken(),
"Path to folder(s) in which computed matches are stored.")
("outputViewsAndPoses", po::value<std::string>(&outputSfMViewsAndPoses)->default_value(outputSfMViewsAndPoses),
"Path to the output SfMData file (with only views and poses).")
("extraInfoFolder", po::value<std::string>(&extraInfoFolder)->default_value(extraInfoFolder),
Expand Down

0 comments on commit b592507

Please sign in to comment.