Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

static void Impala::Core::Feature::InterestPointFeature::AddCmdOptions (  )  [inline, static]

Definition at line 212 of file InterestPointFeature.h.

References Impala::Core::Feature::AddDSurfOptions(), Impala::CmdOptions::AddOption(), and Impala::CmdOptions::GetInstance().

Referenced by Impala::Core::VideoSet::InterestPointProc::AddCmdOptions(), and Impala::Core::ImageSet::InterestPointProc::AddCmdOptions().

00213     {
00214         CmdOptions& options = CmdOptions::GetInstance();
00215         options.AddOption(0, "borderWidth",      "size",        "0");
00216         options.AddOption(0, "recGauss",         "",            "0");
00217         options.AddOption(0, "loadRegions",      "filename",    "");
00218         options.AddOption(0, "saveRegions",      "filename",    "");
00219         options.AddOption(0, "descriptor",       "mode",        "");
00220         options.AddOption(0, "output",           "filename",    "");
00221         options.AddOption(0, "outputFormat",     "mode",    "");
00222         options.AddOption(0, "descriptorBinCount","bins",        "15");
00223         options.AddOption(0, "descriptorPreSmoothing","",        "0");
00224         options.AddOption(0, "descriptorOpponentWeight","weight","");
00225 
00226         /* clustering support (i.e. when not in codebook mode) */
00227         options.AddOption(0, "clusterInput",     "",            "0");
00228         options.AddOption(0, "keepLimited",      "count",       "-1");
00229         options.AddOption(0, "noRandomizeSeed",  "",            "0");
00230 
00231         /* codebook support */
00232         options.AddOption(0, "descriptorReduce", "filename",    "");
00233         options.AddOption(0, "codebook",         "filename",    "");
00234         options.AddOption(0, "codebookMode",     "name",        "hard");
00235         options.AddOption(0, "codebookSigma",    "sigma",       "");
00236         options.AddOption(0, "codebookName",     "name",        "");
00237 
00238         /* Lazebnik spatial pyramid support */
00239         options.AddOption(0, "pointSelector",    "config",      "");
00240         options.AddOption(0, "extraBoxes",       "filename",    "");
00241 
00242         /*** detectors ***/
00243         options.AddOption(0, "detector",         "mode",      "harrislaplace");
00244 
00245         /* for Harris-laplace detectors */
00246         options.AddOption(0, "harrisThreshold",  "threshold",   "1e-9");
00247         options.AddOption(0, "harrisK",          "k",           "0.06");
00248         options.AddOption(0, "laplaceThreshold", "threshold",   "0.03");
00249 
00250         /* for the dense sampling detector */
00251         options.AddOption(0, "ds_spacing",  "pixels",                  "6");
00252         options.AddOption(0, "ds_scales",   "scale1+scale2+...",       "");
00253 
00254         options.AddOption(0, "featurePrefix",   "prefix",       "");
00255 
00256         Core::Feature::AddDSurfOptions(options);
00257     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:19:16 2011 for ImpalaSrc by  doxygen 1.5.1