changeset 419:17c5f378c283

corrected superfluous parameters
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Tue, 08 Oct 2013 12:12:20 -0400
parents ca5784652d57
children def795d1120f
files c/Parameters.cpp include/Parameters.hpp
diffstat 2 files changed, 0 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- 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<float>(&videoFPS), "original video frame rate")
     ("frame1", po::value<unsigned int>(&frame1), "first frame to process")
     ("nframes", po::value<int>(&nFrames), "number of frame to process")
-	("list-filename", po::value<string>(&listFilename), "filename of the list of image files")
-	("folder-data", po::value<string>(&folderData), "folder where video or list file is placed")	
     // feature tracking
     ("max-nfeatures", po::value<int>(&maxNFeatures), "maximum number of features added at each frame")
     ("feature-quality", po::value<float>(&featureQuality), "quality level of the good features to track")
--- 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;