Skip to content

Commit

Permalink
Fix hardcoded path in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
rjanvier committed Dec 22, 2013
1 parent c2e2e13 commit 7f42f1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/software/SfM/main_computeMatches.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ int main(int argc, char **argv)
if (!stlplus::is_file(sListsFile) )
{
std::cerr << std::endl
<< "The input matching/lists.txt is missing" << std::endl;
<< "The input file \""<< sListsFile << "\" is missing" << std::endl;
return false;
}

Expand Down Expand Up @@ -188,7 +188,7 @@ int main(int argc, char **argv)
SIFTDetector(imageGray,
kpSet.features(), kpSet.descriptors(),
bOctMinus1, true, dPeakThreshold);

kpSet.saveToBinFile(sFeat, sDesc);
vec_imagesSize[i] = make_pair(imageGray.Width(), imageRGB.Height());
}
Expand Down

0 comments on commit 7f42f1e

Please sign in to comment.