
#include "Neuro/NeoBrain.H"#include "GUI/DebugWin.H"#include "Component/ModelOptionDef.H"#include "Component/OptionManager.H"#include "Image/MathOps.H"#include "Neuro/NeuroOpts.H"#include "rutz/error_context.h"#include "rutz/mutex.h"#include "rutz/sfmt.h"#include <algorithm>
Go to the source code of this file.
Variables | |
| static const ModelOptionDef | OPT_NeobrainSpeakSaliency | 
| static const ModelOptionDef | OPT_NeobrainSpeakObjects | 
| static const ModelOptionDef | OPT_NeobrainSpeechFile | 
| static const ModelOptionDef | OPT_NeobrainBoringnessThresh | 
| static const ModelOptionDef | OPT_NeobrainTrackDelayFrames | 
| static const ModelOptionDef | OPT_NeobrainStopTrackDelayFrames | 
| static const ModelOptionDef | OPT_TrackTarget | 
| static const ModelOptionDef | OPT_NeobrainKeepTracking | 
for the vss demos
Definition in file NeoBrainVss.C.
const ModelOptionDef OPT_NeobrainBoringnessThresh [static] | 
        
  { MODOPT_ARG(int), "NeobrainBoringnessThresh", &MOC_BRAIN, OPTEXP_CORE,
    "Threshold for boringness beyond which we start a new track",
    "neobrain-boringness-thresh", '\0', "<int>", "80" }
Definition at line 69 of file NeoBrainVss.C.
const ModelOptionDef OPT_NeobrainKeepTracking [static] | 
        
  { MODOPT_FLAG, "NeobrainKeepTracking", &MOC_BRAIN, OPTEXP_CORE,
    "If this option is true, the the brain will try to keep tracking the\n"
    "object for as long as posible",
    "neobrain-keeptracking", '\0', "", "false" }
Definition at line 96 of file NeoBrainVss.C.
const ModelOptionDef OPT_NeobrainSpeakObjects [static] | 
        
  { MODOPT_FLAG, "NeobrainSpeakObjects", &MOC_BRAIN, OPTEXP_CORE,
    "Whether to use speech to speak about objects in NeoBrain",
    "neobrain-speak-objects", '\0', "", "false" }
Definition at line 59 of file NeoBrainVss.C.
const ModelOptionDef OPT_NeobrainSpeakSaliency [static] | 
        
  { MODOPT_FLAG, "NeobrainSpeakSaliency", &MOC_BRAIN, OPTEXP_CORE,
    "Whether to use speech to speak about saliency in NeoBrain",
    "neobrain-speak-saliency", '\0', "", "false" }
Definition at line 54 of file NeoBrainVss.C.
const ModelOptionDef OPT_NeobrainSpeechFile [static] | 
        
  { MODOPT_ARG_STRING, "NeobrainSpeechFile", &MOC_BRAIN, OPTEXP_CORE,
    "Speech utterances for various speech tokens",
    "neobrain-speech-file", '\0', "<filename>", "etc/speech.pmap" }
Definition at line 64 of file NeoBrainVss.C.
const ModelOptionDef OPT_NeobrainStopTrackDelayFrames [static] | 
        
  { MODOPT_ARG(int), "NeobrainStopTrackDelayFrames", &MOC_BRAIN, OPTEXP_CORE,
    "Number of frames to wait after deciding to stop tracking before\n"
    "the tracking is actually disengaged. A value of -1 will never stop. ",
    "neobrain-stop-track-delay-frames", '\0', "<int>", "10" }
Definition at line 79 of file NeoBrainVss.C.
const ModelOptionDef OPT_NeobrainTrackDelayFrames [static] | 
        
  { MODOPT_ARG(unsigned long), "NeobrainTrackDelayFrames", &MOC_BRAIN, OPTEXP_CORE,
    "Number of frames to wait after a shift before starting tracking",
    "neobrain-track-delay-frames", '\0', "<ulong>", "20" }
Definition at line 74 of file NeoBrainVss.C.
const ModelOptionDef OPT_TrackTarget [static] | 
        
  { MODOPT_FLAG, "TrackTarget", &MOC_BRAIN, OPTEXP_CORE,
    "Whether to start up in target tracking mode.",
    "track-target", '\0', ""
    , "true"
  }
Definition at line 85 of file NeoBrainVss.C.
 1.6.3