File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99#include " sift_conf.h"
1010
1111#include < iostream>
12+ #include < sstream>
1213#include < algorithm>
1314
1415using namespace std ;
@@ -291,7 +292,7 @@ float Config::getEdgeThreshDefault( )
291292}
292293std::string Config::getEdgeThreshUsage ( )
293294{
294- ostringstream ostr;
295+ std:: ostringstream ostr;
295296 ostr << " Edge Threshold: eliminates peaks of the DoG scale space whose curvature is too small." << endl
296297 << " Default: " << getEdgeThreshDefault () << endl
297298 << " Set to a value <= 0 to disable." << endl;
@@ -310,7 +311,7 @@ float Config::getPeakThreshDefault( )
310311}
311312std::string Config::getPeakThreshUsage ( )
312313{
313- ostringstream ostr;
314+ std:: ostringstream ostr;
314315 ostr << " Peak Threshold: eliminates peaks of the DoG scale space that are too small" <<endl
315316 << " (contrast too small in absolute value)." << endl
316317 << " Default: " << getPeakThreshDefault () << endl
You can’t perform that action at this time.
0 commit comments