39 (
"help",
"Produce help message")
40 (
"inputFile", value< vector<string> >(),
"Input file name. ")
41 (
"minH", value<int>(&
m_minH)->default_value(0),
"Minimal horizontal opening angle.")
42 (
"maxH", value<int>(&
m_maxH)->default_value(360),
"Maximal horizontal opening angle.")
43 (
"minV", value<int>(&
m_minV)->default_value(-90),
"Minimal vertical opening angle.")
44 (
"maxV", value<int>(&
m_maxV)->default_value(90),
"Maximal vertical opening angle.")
45 (
"minZ", value<float>(&
m_minZ)->default_value(0),
"Minimal depth value.")
46 (
"maxZ", value<float>(&
m_maxZ)->default_value(1e6),
"Maximal depth value.")
47 (
"maxZimg", value<float>(&
m_maxZimg)->default_value(1e6),
"Maximal depth value in depth image.")
48 (
"minZimg", value<float>(&
m_maxZimg)->default_value(0),
"Maximal depth value in depth image.")
49 (
"img", value<string>(&
m_imageOut)->default_value(
"panorama.pgm"),
"Output file for projection image.")
50 (
"imageWidth,w", value<int>(&
m_width)->default_value(2800),
"Image width.")
51 (
"imageHeight,h", value<int>(&
m_height)->default_value(1000),
"Image height.")
52 (
"regionWidth,i", value<int>(&
m_width)->default_value(5),
"Width of the nearest neighbor region of a pixel for normal estimation.")
53 (
"regionHeight,j", value<int>(&
m_height)->default_value(5),
"Height of the nearest neighbor region of a pixel for normal estimation.")
54 (
"optimize,o",
"Optimize image aspect ratio.")
55 (
"system,s", value<string>(&
m_system)->default_value(
"NATIVE"),
"The coordinate system in which the points are stored. Use NATIVE to interpret the points as they are. Use SLAM6D for scans in 3dtk's coordinate system and UOS for scans that where taken with a tilting laser scanner at Osnabrueck University.")
66 ::std::cout <<
m_descr << ::std::endl;
const kaboom::Options * options
positional_options_description m_pdescr
The internally used positional option desription.
options_description m_descr
The internally used option description.
Options(int argc, char **argv)
Ctor. Parses the command parameters given to the main function of the program.
variables_map m_variables
The internally used variable map.