# HG changeset patch # User Nicolas Saunier # Date 1381248740 14400 # Node ID 17c5f378c283ef844b3f76b2cb747cbe8fa3185d # Parent ca5784652d5740c0ae34a244e524897a039a4500 corrected superfluous parameters diff -r ca5784652d57 -r 17c5f378c283 c/Parameters.cpp --- a/c/Parameters.cpp Thu Oct 03 17:43:15 2013 -0400 +++ b/c/Parameters.cpp Tue Oct 08 12:12:20 2013 -0400 @@ -35,8 +35,6 @@ ("video-fps", po::value(&videoFPS), "original video frame rate") ("frame1", po::value(&frame1), "first frame to process") ("nframes", po::value(&nFrames), "number of frame to process") - ("list-filename", po::value(&listFilename), "filename of the list of image files") - ("folder-data", po::value(&folderData), "folder where video or list file is placed") // feature tracking ("max-nfeatures", po::value(&maxNFeatures), "maximum number of features added at each frame") ("feature-quality", po::value(&featureQuality), "quality level of the good features to track") diff -r ca5784652d57 -r 17c5f378c283 include/Parameters.hpp --- a/include/Parameters.hpp Thu Oct 03 17:43:15 2013 -0400 +++ b/include/Parameters.hpp Tue Oct 08 12:12:20 2013 -0400 @@ -17,11 +17,6 @@ bool groupFeatures; std::string videoFilename; - - std::string listFilename; - std::string folderData; - - std::string databaseFilename; std::string homographyFilename; std::string maskFilename;