#include "Channels/SubmapAlgorithmBiased.H"
#include "Component/ModelManager.H"
#include "Image/Image.H"
#include "Image/ImageSet.H"
#include "Image/ShapeOps.H"
#include "Image/DrawOps.H"
#include "Image/FilterOps.H"
#include "Image/ColorOps.H"
#include "Image/Transforms.H"
#include "Image/MathOps.H"
#include "Neuro/StdBrain.H"
#include "Neuro/VisualCortexConfigurator.H"
#include "Neuro/VisualCortex.H"
#include "Neuro/SaliencyMap.H"
#include "Neuro/NeuroOpts.H"
#include "Media/TestImages.H"
#include "Media/SceneGenerator.H"
#include "Channels/DescriptorVec.H"
#include "Channels/ComplexChannel.H"
#include "Simulation/SimEventQueue.H"
#include "Simulation/SimulationOpts.H"
#include "Simulation/SimEventQueueConfigurator.H"
#include "Learn/Bayes.H"
#include "ObjRec/BayesianBiaser.H"
#include "ObjRec/evalALOI.H"
Go to the source code of this file.
Defines | |
#define | OBJSIZEX 256 |
#define | OBJSIZEY 256 |
#define | NOBJ 25 |
Functions | |
int | train (TestImages &testImages, DescriptorVec &descVec, Bayes &bayesNet) |
int | test (TestImages &testImages, DescriptorVec &descVec, Bayes &bayesNet) |
int | trainTest (TestImages &testImages, DescriptorVec &descVec, Bayes &bayesNet) |
int | classifyImage (Image< PixRGB< byte > > &img, DescriptorVec &descVec, Bayes &bayesNet) |
void | learnImage (Image< PixRGB< byte > > &img, int cls, DescriptorVec &descVec, Bayes &bayesNet, const char *objName=NULL) |
int | classifyLocation (Point2D< int > &loc, DescriptorVec &descVec, Bayes &bayesNet) |
void | learnLocation (Point2D< int > &loc, int cls, DescriptorVec &descVec, Bayes &bayesNet, const char *objName=NULL) |
void | biasVC (ComplexChannel &vc, Bayes &bayesNet, int objId) |
Point2D< int > | evolveBrain (Image< PixRGB< byte > > &img, DescriptorVec &descVec, int ii=-1) |
int | main (const int argc, const char **argv) |
Variables | |
ModelManager * | mgr |
test various scene rec alg
Definition in file test-SceneRec.C.