#include "Neuro/InferoTemporalHmax.H"
#include "HMAX/HmaxFL.H"
#include "Learn/SVMClassifier.H"
#include "Component/OptionManager.H"
#include "Component/ModelOptionDef.H"
#include "Image/MathOps.H"
#include "Image/ShapeOps.H"
#include "Image/CutPaste.H"
#include "Image/ColorOps.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>
#include <iomanip>
#include <fstream>
Go to the source code of this file.
Variables | |
const ModelOptionDef | OPT_ITHMAXC1PatchesDir |
const ModelOptionDef | OPT_ITHMAXFeatureVectorFileName |
const ModelOptionDef | OPT_ITHMAXDisableClassifier |
Object recognition module with Hmax
Definition in file InferoTemporalHmax.C.
const ModelOptionDef OPT_ITHMAXC1PatchesDir |
{ MODOPT_ARG_STRING, "ITC feature patches dir", &MOC_ITC, OPTEXP_CORE, "Directory of ordered patch files named C1Patches.<PATCH_SIZES>.<NUM_PATCHES_PER_SIZE>.<PATCH_ORIENTATIONS>.pnm, " "where PATCH_SIZES iterates over the number of patch scale sizes (all patches are square), " "where NUM_PATCHES_PER_SIZE iterates over the number of patches for each size, " "where PATCH_ORIENTATIONS iterates over the number of orientations, " "each iterator goes from 0 to X-1", "it-hmax-c1patches-dir", '\0', "<dirname>", "" }
Definition at line 60 of file InferoTemporalHmax.C.
const ModelOptionDef OPT_ITHMAXDisableClassifier |
{ MODOPT_FLAG, "ITC HMAX Classifier Disable", &MOC_ITC, OPTEXP_CORE, "Disable the internal classifier module inside of the ITHmax class, designed to be used when system has an external" "classifier to avoid conflicts", "it-hmax-disable-classifier", '\0', "<boolean>", "false" }
Definition at line 76 of file InferoTemporalHmax.C.
const ModelOptionDef OPT_ITHMAXFeatureVectorFileName |
{ MODOPT_ARG_STRING, "ITC HMAX Feature Vector File Name", &MOC_ITC, OPTEXP_CORE, "Output the feature vectors with their ids into a file", "it-hmax-feature-vector-filename", '\0', "<filename>", "" }
Definition at line 70 of file InferoTemporalHmax.C.