comparison include/Parameters.hpp @ 506:13d4eb96a751

added needed parameters
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Mon, 28 Apr 2014 18:18:14 -0400
parents 17c5f378c283
children 081a9da6f85b
comparison
equal deleted inserted replaced
494:41a72146685e 506:13d4eb96a751
2 #define PARAMETERS_HPP 2 #define PARAMETERS_HPP
3 3
4 /// \todo Class for parameters, with utilities to save and load from configuration files 4 /// \todo Class for parameters, with utilities to save and load from configuration files
5 5
6 #include <string> 6 #include <string>
7 #include <vector>
7 8
8 namespace boost{ 9 namespace boost{
9 namespace program_options { 10 namespace program_options {
10 class options_description; 11 class options_description;
11 class variables_map; 12 class variables_map;
17 bool groupFeatures; 18 bool groupFeatures;
18 19
19 std::string videoFilename; 20 std::string videoFilename;
20 std::string databaseFilename; 21 std::string databaseFilename;
21 std::string homographyFilename; 22 std::string homographyFilename;
23 std::string intrinsicCameraFilename;
24 std::vector<float> distortionCoefficients;
25 float undistortedImageMultiplication;
22 std::string maskFilename; 26 std::string maskFilename;
23 bool loadFeatures; 27 bool loadFeatures;
24 bool display; 28 bool display;
25 float videoFPS; 29 float videoFPS;
26 // int measurementPrecision; 30 // int measurementPrecision;