fixed one of the log messages in the stitching module

pull/33/head
Alexey Spizhevoy 13 years ago
parent 8c1550a4ec
commit eafb024112
  1. 2
      modules/stitching/src/motion_estimators.cpp

@ -764,7 +764,7 @@ vector<int> leaveBiggestComponent(vector<ImageFeatures> &features, vector<Match
for (size_t i = 1; i < indices_removed.size(); ++i) for (size_t i = 1; i < indices_removed.size(); ++i)
LOG(", " << indices_removed[i]+1); LOG(", " << indices_removed[i]+1);
LOGLN(")."); LOGLN(").");
LOGLN("Try to decrease --match_conf value and/or check if you're stitching duplicates."); LOGLN("Try to decrease the match confidence threshold and/or check if you're stitching duplicates.");
features = features_subset; features = features_subset;
pairwise_matches = pairwise_matches_subset; pairwise_matches = pairwise_matches_subset;

Loading…
Cancel
Save