110 po::options_description
options;
118 (
"output", po::value<std::string>(),
"Output image for the background")
119 (
"output-variance", po::value<std::string>(),
"Output image for the variance")
120 (
"output-area", po::value<std::string>()->default_value(boost::filesystem::temp_directory_path().
native()),
"Output area")
121 (
"algorithm", po::value<std::string>()->required(),
"Algorithm to use: Simple, ng")
122 (
"cell-size", po::value<std::string>()->default_value(
"64"),
"Cell size for the histogram")
123 (
"smooth-size", po::value<std::string>()->default_value(
"3"),
"Box size for the median filtering")
124 (
"no-write", po::bool_switch(),
"Do not write the image (skip interpolation)")
125 (
"tile-size", po::value<int>()->default_value(512),
"Tile size")
126 (
"tile-memory", po::value<int>()->default_value(2048),
"Tile memory limit");