
#include "Neuro/InferoTemporalSalBayes.H"#include "Component/OptionManager.H"#include "Component/ModelOptionDef.H"#include "Channels/ChannelMaps.H"#include "Channels/ChannelOpts.H"#include "Image/MathOps.H"#include "Image/ShapeOps.H"#include "Image/CutPaste.H"#include "Neuro/NeuroOpts.H"#include "Neuro/NeuroSimEvents.H"#include "Neuro/Brain.H"#include "Neuro/VisualCortex.H"#include "Simulation/SimEventQueue.H"#include "Media/MediaSimEvents.H"#include <cstdlib>#include <iostream>
Go to the source code of this file.
Classes | |
| class | moreVOM |
Variables | |
| static const ModelOptionDef | OPT_ITSB_FOVSize |
| static const ModelOptionDef | OPT_ITCMode |
| static const ModelOptionDef | OPT_ITCSalBayes_NetFile |
| const ModelOptionDef | OPT_ITSiftObjectDBFileName |
| const ModelOptionDef | OPT_ITUseSift |
| const ModelOptionDef | OPT_ITUseMaxNMatches |
Object recognition module with SalBayes
Definition in file InferoTemporalSalBayes.C.
const ModelOptionDef OPT_ITCMode [static] |
{ MODOPT_ARG_STRING, "ITC Mode", &MOC_ITC, OPTEXP_CORE,
"The mode of ITC . Train: is for training from some data, Rec is for recognition.",
"it-mode", '\0', "<Train|Rec>", "Rec" }
Definition at line 62 of file InferoTemporalSalBayes.C.
const ModelOptionDef OPT_ITCSalBayes_NetFile [static] |
{ MODOPT_ARG_STRING, "ITC BaysNet File", &MOC_ITC, OPTEXP_CORE,
"Name of the file to save/read the computed Bayesian Network.",
"it-bayesnet-file", '\0', "<filename>", "SalBayes.net" }
Definition at line 67 of file InferoTemporalSalBayes.C.
const ModelOptionDef OPT_ITSB_FOVSize [static] |
{ MODOPT_ARG(Dims), "FoveaSize", &MOC_ITC, OPTEXP_CORE,
"Use the given fovea size for constructing a feature vector.",
"it-fov-size", '\0', "<w>x<h>", "75x75" }
Definition at line 57 of file InferoTemporalSalBayes.C.
| const ModelOptionDef OPT_ITSiftObjectDBFileName |
{ MODOPT_ARG_STRING, "ITC SiftObjectDBFileName", &MOC_ITC, OPTEXP_CORE,
"Filename for the sift object database. Specifying no file will disable the sift alg.",
"it-object-db", '\0', "<filename>", "" }
Definition at line 72 of file InferoTemporalSalBayes.C.
| const ModelOptionDef OPT_ITUseMaxNMatches |
{ MODOPT_ARG(bool), "ITC use max num of matches", &MOC_ITC, OPTEXP_CORE,
"When determining a which object in the database matches, use the maximum "
"number of keypoints matches instead of sorting by distance of keypoints.",
"it-use-max-num-matches", '\0', "<true|false>", "true" }
Definition at line 84 of file InferoTemporalSalBayes.C.
| const ModelOptionDef OPT_ITUseSift |
{ MODOPT_ARG(int), "ITC use sift", &MOC_ITC, OPTEXP_CORE,
"Use sift recognition on the n most probable objects obtained from SalBayes. "
"That is, the sift algorithm will only run on the top n objects returned from SalBayes."
"0 disables sift and just return the most probable object",
"it-use-sift", '\0', "<int>", "10" }
Definition at line 77 of file InferoTemporalSalBayes.C.
1.6.3